This repository was archived by the owner on Oct 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.25 KB
/
Copy pathindex.html
File metadata and controls
42 lines (38 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Our Grid Project</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Two Truths, One Lie</h1>
</header>
<main class="container">
<section class="card">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Skyline_Frankfurt_am_Main_2015.jpg/800px-Skyline_Frankfurt_am_Main_2015.jpg" alt="Image 1">
<h2>Player One</h2>
<ul>
<li>I've been to Paris</li>
<li>I've never broken a bone</li>
<li>I'm an Olympic medalist</li>
</ul>
</section>
<section class="card">
<img src="https://media.cnn.com/api/v1/images/stellar/prod/190418141741-01-what-to-see-frankfurt-germany-photos.jpg?q=w_4191,h_2357,x_0,y_0,c_fill/w_1280" alt="Image 2">
<h2>Player Two</h2>
<ul>
<li>I'm a black belt in karate</li>
<li>I'm allergic to peanuts</li>
<li>I've never been on a roller coaster</li>
</ul>
</section>
</main>
<footer>
<h3>By Ebrahim Beiati-Asl</h3>
</footer>
</body>
</html>