-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollection.html
More file actions
85 lines (83 loc) · 3.1 KB
/
collection.html
File metadata and controls
85 lines (83 loc) · 3.1 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="css/1001fonts-thuner-eula.txt" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Kanit:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css" />
<title>Game Hub | Collection</title>
</head>
<body>
<header>
<img id="logo" src="images/GameHub_Logo.png" />
<nav class="nav-list">
<a href="index.html">store</a>
<a href="collection.html">collection</a>
<a href="about.html">about us</a>
<a href="contact.html">contact</a>
</nav>
</header>
<main>
<h1>Your Collection</h1>
<section class="most-played">
<h2>Most Played</h2>
<div class="collection-games-pics">
<img src="images/Hunt/cover.jpg" alt="Hunt Showdown" />
<img src="images/DRG/cover.jpg" alt="Deep Rock Galactic" />
<img src="images/Gears/cover.jpg" alt="Gears of War 3" />
</div>
</section>
<section class="most-played">
<h2>New Games</h2>
<div class="collection-games-pics">
<img src="images/Hunt/cover.jpg" alt="Hunt Showdown" />
<img src="images/DRG/cover.jpg" alt="Deep Rock Galactic" />
<img src="images/Gears/cover.jpg" alt="Gears of War 3" />
</div>
</section>
<section class="all-games">
<div class="gray-bar all-games">
<h3>All Games (15)</h3>
<input type="text" placeholder="Search..." class="search" />
</div>
<div class="collection-all-games-pics">
<img src="images/Hunt/cover.jpg" alt="Hunt Showdown" />
<img src="images/DRG/cover.jpg" alt="Deep Rock Galactic" />
<img src="images/Gears/cover.jpg" alt="Gears of War 3" />
<img src="images/Hunt/cover.jpg" alt="Hunt Showdown" />
<img src="images/DRG/cover.jpg" alt="Deep Rock Galactic" />
<img src="images/Gears/cover.jpg" alt="Gears of War 3" />
<img src="images/Hunt/cover.jpg" alt="Hunt Showdown" />
<img src="images/DRG/cover.jpg" alt="Deep Rock Galactic" />
<img src="images/Gears/cover.jpg" alt="Gears of War 3" />
<img src="images/Hunt/cover.jpg" alt="Hunt Showdown" />
<img src="images/DRG/cover.jpg" alt="Deep Rock Galactic" />
<img src="images/Gears/cover.jpg" alt="Gears of War 3" />
</div>
</section>
</main>
</body>
<footer>
<div class="footer-content">
<div class="footer-contact">
<a href="contact.html">Contact</a>
<p>email@gamehub.support</p>
<p>+11 345 67 890</p>
<p>FAQ</p>
</div>
<div class="footer-about">
<a href="about.html">About us</a>
</div>
<div class="footer-social">
<p>Find us on:</p>
</div>
<p>Copyright ©</p>
</div>
</footer>
</html>