forked from SallyMcGrath/HTML-CSS-W2-InClassProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (44 loc) · 1.48 KB
/
index.html
File metadata and controls
45 lines (44 loc) · 1.48 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>
<h1>Two Truths, One Lie</h1>
<p>Can you guess which statement is false?</p>
</header>
<main>
<!-- how will you mark up your media objects -->
<section class="Oneil">
<h2 class="name">Oneil</h2>
<img class="picture" src="pexels-saifuddin-ratlamwala-3850526.jpg" alt="Elephant">
<ol class="list">
<li>I had an Elephant when I was younger.</li>
<li>I was born in Lahore, Pakistan.</li>
<li>I've had a pet tortoise.</li>
</ol>
</section>
<section class="Alex">
<h2 class="name">Alexandra </h2>
<img class="picture" src="pexels-saifuddin-ratlamwala-3850526.jpg" alt="Elephant">
<ol class="list">
<li>Lorem ipsum dolor sit amet.
</li>
<li>Lorem ipsum dolor sit amet.</li>
<li>Lorem ipsum dolor sit amet.</li>
</ol>
</section>
</main>
<footer>
<h3>By Oneil and Alexandra</h3>
</footer>
</body>
</html>