-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.46 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.46 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
<html>
<head>
<title>Overwatch Menu Clone</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:400,400i,700,700i&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.icons8.com/fonts/line-awesome/1.1/css/line-awesome-font-awesome.min.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<div class="root">
<div class="home-page">
<div class="left">
<a href="" class="logo">
<img src="images/overwatch-logo.png">
</a>
<div class="menu">
<div class="menu-large">
<a href=""><span>Highlights</span></a>
<a href=""><span>Play</span></a>
<a href=""><span>Training</span></a>
<a href=""><span>Hero Gallery</span></a>
<a href=""><span>Loot Box</span></a>
</div>
<div class="menu-small">
<a href=""><span>Social</span></a>
<a href=""><span>Career Profile</span></a>
<a href=""><span>Options</span></a>
<a href=""><span>Exit Game</span></a>
</div>
</div>
</div>
</div>
<div class="profile">
<a href="" class="profile-add">
<i class="fa fa-user-plus"></i>
</a>
<a href="" class="profile-user">
<img src="images/profile.jpg">
<p>bendy <span>44</span></p>
</a>
</div>
</div>
</body>
</html>