-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
112 lines (91 loc) · 3.63 KB
/
home.html
File metadata and controls
112 lines (91 loc) · 3.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!------------------------------------------------------------------------------------------------------------------------------
>>> H U M A N I N T E R F A C E C O M P U T I N G <<<
Project 2 | Implementation | HOME
-----------------------------
GROUP MEMBERS
> SYDNEY ZUELZKE | Leader, Designer
> MARIHA AHAMMED | Member, Designer
> EMMA MAGYARICS | Member, Designer
> JULIA PANGONIS | Member, Designer
> JOSHUA ROMISHER | Member, Designer
------------------------------------------------------------------------------------------------------------------------------->
<!DOCTYPE html>
<html>
<head>
<title> Allaince Gaming </title>
<link rel="stylesheet" type="text/css" href="newcss.css">
</head>
<body>
<header>
<div id="header-content">
<div class="icon lnr lnr-heart">
<img src="logo1.png" height = 100% border-radius= 50px>
</div>
<nav class="toplinks">
<a href="home.html">home</a>
<a href="aboutus.html">about us</a>
<a href="career.html">career</a>
<a href="history.html">history</a>
<a href="index.php">merch store</a>
</nav>
<nav class="botlinks">
<a href="teams.html">teams </a>
<a href="projects.html">projects </a>
<form action="/search" method= "get">
<div class = "search-bar">
<input type= "text" value placeholder="Search...">
<button type="submit">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search">
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
</button>
</div>
</form>
</nav>
</div>
</header>
<div id="title"> home </div>
<div id="sidebar">
<img src = "bg.png" width= 100%>
<div class="box">
<div class="text"> Ready, Player One? </div>
<div class= "infotext"> Alliance Gaming is an esports organization; a pioneer in its generation; giving a platform to creators and e-athletes alike. </div>
</div>
<footer id="footer">
<div class="container">
<div class="top">
<div class="left">
<dl>
<dt class="t-gradient"> Welcome </dt>
<dd><a href= "home.html"> Home </a></dd>
<dd><a href= "about.html"> About </a></dd>
<dd><a href= "history.html"> History </a></dd>
<dd><a href= "career.html"> Careers </a></dd>
</dl>
<dl>
<dt class="t-gradient"> Resources </dt>
<dd><a href= "index.php"> Merch Store </a></dd>
<dd><a href= "contactus.html"> Contact Us </a></dd>
<dd><a href= "teams.html"> Teams </a></dd>
<dd><a href= "projects.html"> Projects </a></dd>
</dl>
<dl>
<dt class="t-gradient" style="background: white"> ~ </dt>
<dd><a href= " "> </a></dd>
<dd><a href= " "> </a></dd>
<dd><a href= " "> </a></dd>
<dd><a href= " "> Privacy Policy </a></dd>
</dl>
</div>
</div>
<div class="bottom">
<div class="left">
© 2012–2019 Alliance Gaming all rights reserved.
</div>
</div>
</div>
</footer>
</div>
</body>
</hmtl>