-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (82 loc) · 3.44 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img class="logo-img" src="./imgs/pixelPulse-Logo.png" alt="pixel pulse logo">
<nav>
<ul>
<li><a href="#">BUY</a></li>
<li><a href="#">ABOUT</a></li>
<li><a href="#">CONTACT</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</nav>
</header>
<main>
<div class="main-content">
<div class="content-description">
<h1>Pixel Pulse</h1>
<p class="content-text">Welcome to Pixel Pulse, your main destination to discover and purchase the best
video games on the
market. On our platform, we offer a wide range of titles for all consoles and platforms, from
timeless classics to the latest exciting releases.</p>
<button class="button-main-content">Sign Up</button>
</div>
<img class="game-img" src="./imgs/game.png" alt="easter-eggs">
</div>
<div class="extra-information">
<h2>Games of the week</h2>
<div class="items-container">
<div class="item">
<div class="item-img">
<img src="./imgs/games/MechMania.png" alt="robots war game">
</div>
<p class="item-description">MechMania</p>
</div>
<div class="item">
<div class="item-img">
<img src="./imgs/games/PixelScout.png" alt="exploration game">
</div>
<p class="item-description">PixelScout</p>
</div>
<div class="item">
<div class="item-img">
<img src="./imgs/games/terraCraft.png" alt="open word game">
</div>
<p class="item-description">TerraCraft</p>
</div>
<div class="item">
<div class="item-img">
<img src="./imgs/games/TerraTwist.jpg" alt="blocks game">
</div>
<p class="item-description">TerraTwist</p>
</div>
</div>
</div>
<div class="quote">
<p class="quote-text">"Video games are a form of art; it doesn't matter if they are simple, if they are just
for fun, or if they are something more complex. They are a real artistic expression. They are just
another way of telling a story." </p>
<p class="quote-author">-Will Wright, video game designer and creator of "The Sims" series</p>
</div>
<div class="cta-white-section">
<div class="call-to-action-container">
<div class="call-to-action">
<p class="title-cta">Call to action! It's time!</p>
<p class="description-cta">Sign up for out product by clicking that button night over there</p>
</div>
<button class="cta-button">Sign Up</button>
</div>
</div>
</main>
<footer>
<p class="footer-content">Copyright © ktorres63 2024</p>
</footer>
</body>
</html>