-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (57 loc) · 2.13 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Goblin</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet"
href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="#" class="logo">COC</a>
<nav>
<ul class="navlist" type="none">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Clans</a></li>
<li><a href="#">Town hall</a></li>
<li><a href="#">Troops</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="dropdown">
<div class="bx bx-menu" id="menu-icon"></div>
<div class="side-bar">
<ul class="navlist" type="none">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Clans</a></li>
<li><a href="#">Town hall</a></li>
<li><a href="#">Troops</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
</header>
<section class="hero">
<div class="hero-text">
<h5>#2 Tranding</h5>
<h4>Lead Supercell</h4>
<h1>
GOBLINES
</h1>
<p>Join milliions of players worldwide as you build your village,<br>
raise a clan,and compete in epic Clan Wars</p>
</div>
<div>
<img src="goblin1.png" alt="gonlin" width="400px" height="300px">
</div>
</section>
</body>
</html>