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
60 lines (60 loc) · 1.81 KB
/
index.html
File metadata and controls
60 lines (60 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Our Grid Project</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<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>
<!-- how will you mark up your media objects -->
<div id="container">
<p id="parag">Can you guess which statament is false?</p>
<div id="saim">
<div id="saim-container">
<img
src="https://thumbs.dreamstime.com/b/landscape-small-village-cut-out-paper-97584477.jpg"
alt=""
style="width: 100px"
/>
<h1>Saim Korkmaz</h1>
</div>
<ol>
<li>saim has two sisters</li>
<li>saim likes horror movies</li>
<li>saim can speak turkish</li>
</ol>
</div>
<div id="baki">
<div id="baki-container">
<img
src="https://w7.pngwing.com/pngs/999/643/png-transparent-the-day-the-earth-smiled-earth-cartoon-globe-photography-smiley-thumbnail.png"
alt=""
style="width: 100px"
/>
<h1>Other</h1>
</div>
<ol>
<li>other is from world</li>
<li>other can speak dutch</li>
<li>other likes</li>
</ol>
</div>
</div>
</main>
<footer>
<h3>By Saim and Other</h3>
</footer>
</body>
</html>