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
45 lines (45 loc) · 1.59 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.59 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
<!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 class="header">
<h1>Two Truths, One Lie</h1>
<h2>Can you guess which one is a lie?</h2>
</header>
<main>
<!-- how will you mark up your media objects -->
<div class="container">
<div class="box">
<h2>Bekir</h2>
<p>I am younger then 30 years old.</p>
<p>I like javascript functions.</p>
<p>I am not Turkish</p>
</div>
<div class="box2">
<h2>Adrian</h2>
<p>I am not over 30 years old.</p>
<p>I am Romanian.</p>
<p>I don't have kids.</p>
</div>
<div class="img-container">
<img src="https://images.pexels.com/photos/5197130/pexels-photo-5197130.jpeg?auto=compress&cs=tinysrgb&w=800&lazy=load" alt="My Second Image" width="500px" height="500px">
</div>
<div>
<img src="https://images.pexels.com/photos/2499769/pexels-photo-2499769.jpeg?auto=compress&cs=tinysrgb&w=600" alt="My Image" width="500px" height="500px" >
</div>
</div>
</main>
<footer>
<h3>By Adrian Ilovan</h3>
</footer>
</body>
</html>