-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (57 loc) · 2.2 KB
/
index.html
File metadata and controls
63 lines (57 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/main.css">
<link href="https://fonts.googleapis.com/css2?family=Antic+Slab&display=swap" rel="stylesheet">
<title>Bullet || COD Guns</title>
</head>
<body>
<header>
<div class="menu-btn">
<span class="menu-btn__burger"></span>
</div>
<nav class="nav">
<ul class="menu-nav">
<li class="menu-nav__item active">
<a href="index.html" class="menu-nav__link">Home</a>
</li>
<li class="menu-nav__item">
<a href="guns.html" class="menu-nav__link">Guns</a>
</li>
<li class="menu-nav__item">
<a href="#!" target="_blank" class="menu-nav__link">Gameplay</a>
</li>
</ul>
</nav>
</header>
<main>
<section class="home">
<div class="game-name">
<h1><i class="fab fa-old-republic"></i> MODERN WARFARE</h1>
</div>
<div class="home-support">
<img src="./img/endsars.jpg" alt="#EndSars ✊" class="home-support__img">
<h1>#END<span class="home-support__white">SARS</span></h2>
</div>
<div class="home-welcome">
<img src="./img/1.jpg" alt="Pistol" class="home-welcome__img">
<p>A collection of top Guns used in Call of Duty - Modern Warfare</p>
</div>
<div class="social-icons">
<a href="https://twitter.com/agba_dr3" target="_blank">
<i class="fab fa-twitter fa-2x"></i>
</a>
<a href="https://github.com/AgbaD/bullet" target="_blank">
<i class="fab fa-github fa-2x"></i>
</a>
</div>
<footer>© Copyright 2020</footer>
</section>
</main>
<script src="https://kit.fontawesome.com/6d2ea823d0.js"></script>
<script src="js/main.js"></script>
</body>
</html>