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
38 lines (38 loc) · 1.15 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.15 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
<!DOCTYPE html>
<html>
<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>
<section class="grid-section">
<h2>Two Truths and a Lie</h2>
<article class="grid-article">
<h3>Truth or Lie #1</h3>
<p>I am 4782 years old.</p>
</article>
<article class="grid-article">
<h3>Truth or Lie #2</h3>
<p>Red is a bigger number than white.</p>
</article>
<article class="grid-article">
<h3>Truth or Lie #3</h3>
<p>Apples can fall off trees.</p>
</article>
</section>
</main>
<footer>
<h3>By BEKIR KUSCU</h3>
</footer>
</body>
</html>