-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (57 loc) · 2.7 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
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Responsive Navigation</title>
<link rel="stylesheet" href="/css/base.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header>
<h3 class="logo"><span>ASSASIN</span> CREED</h3>
<input type="checkbox" id="nav-toggle" />
<label for="nav-toggle" class="nav-icon">
<i class="fas fa-bars" id="menu-icon"></i>
<i class="fas fa-times" id="close-icon"></i>
</label>
<nav>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/pages/about.html">About</a></li>
<li><a href="/pages/game.html">Game Portfolio</a></li>
<li><a href="/pages/news.html">News</a></li>
</ul>
</nav>
<button class="btn">Register</button>
</header>
<div class="content">
<div class="text">
<div class="heading">
<p>ASSASIN<br /><span>CREED</span></p>
</div>
<div class="desc">
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officia, omnis assumenda. Est, cupiditate
quo corporis aspernatur vel numquam unde deserunt neque mollitia temporibus nobis qui debitis illo,
ullam ratione, asperiores veritatis molestiae similique quasi necessitatibus doloremque! Dolorem
quia hic nisi quo iste, id possimus unde dicta soluta qui cumque velit?
</p> -->
<p>
Welcome to the ultimate Assassin's Creed fan site! Dive into the rich lore and thrilling adventures
of the Assassin's Creed universe, where history intertwines with exhilarating gameplay. From the
stealthy maneuvers of Altair to the epic battles of Eivor, discover the games that have captivated
millions. Explore detailed game guides, character analyses, and the immersive worlds each title
offers. Whether you’re a seasoned assassin or new to the series, there’s something here for
everyone. Join us in celebrating the legacy of Assassin's Creed!
</p>
<div class="butns">
<button class="btn1">START FOR FREE</button>
<button class="btn2">DISCOVER MORE</button>
</div>
</div>
</div>
</div>
</body>
</html>