-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (83 loc) · 3.04 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
<!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>Videogames 🎮 Mariana Tellez</title>
<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=Poppins:wght@300&family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<button class="theme-button">Change Theme</button>
<div class="container">
<h1>VIDEOGAMES</h1>
<h2>My favorite hobby</h2>
<a href="https://en.wikipedia.org/wiki/Video_game" target="_blank">
<img
src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/077/831/original/videogames.jpg?1681866786"
alt="videogames"
class="main-image"
/>
</a>
<div class="grid">
<img
src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/077/826/original/games1.png?1681866710"
alt="game-1"
/>
<img
src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/077/827/original/games2.png?1681866721"
alt="game-2"
/>
<img
src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/077/828/original/games3.png?1681866735"
alt="game-3"
/>
<img
src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/077/829/original/games4.png?1681866745"
alt="game-4"
/>
<img
src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/078/099/original/games5.png?1682012907"
alt="game-5"
/>
<img
src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/078/100/original/games6.png?1682012917"
alt="game-6"
/>
</div>
<p>
A video game, also known as a computer game, is an electronic game that
can be interacted with using an input device, such as a controller,
keyboard, or joystick. Video games can be used for entertainment and
relaxation, but they can also be used for competitions and for computer
learning. Some of my favorite games are Elden Ring, Resident Evil, Dying
Light, The Evil Within, Dead Space, Little Big Planet and Horizon
Forbidden West 🎮.
</p>
<a
href="https://en.wikipedia.org/wiki/Video_game"
target="_blank"
class="learn-more"
>
Learn more on Wikipedia
</a>
<button class="join-community">Join our Gamer Community</button>
</div>
<footer>
Coded with 💜 by
<a
href="https://www.linkedin.com/in/mariana-tellez-resendiz-134354232"
target="_blank"
>
Mariana Tellez
</a>
</footer>
<script src="script.js"></script>
</body>
</html>