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
80 lines (80 loc) · 2.48 KB
/
index.html
File metadata and controls
80 lines (80 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!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"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<h1>Two Truths, One Lie</h1>
<p>Can you guess which one is a lie?</p>
</header>
<main>
<!-- how will you mark up your media objects -->
<section class="wrapper omer">
<div class="title">
<h2>Omer</h2>
</div>
<div class="tl">
<ol>
<li><p>I like Peaky Blinders</p></li>
<li><p>I drink four litres of water everyday</p></li>
<li><p>I watch NBA games every week</p></li>
</ol>
<div class="img-wrapper">
<img src="img/palmtree1.jpg" alt="palm tree" />
</div>
</div>
</section>
<section class="wrapper seyed">
<div class="title">
<h2>Seyed</h2>
</div>
<div class="tl">
<ol>
<li><p>I go for a run everyday of the week.</p></li>
<li><p>I have stopped eating fish.</p></li>
<li><p>I love watching football.</p></li>
</ol>
<div class="img-wrapper">
<img src="img/palmtree2.jpg" alt="palm tree" />
</div>
</div>
</section>
<section class="wrapper sean">
<div class="title">
<h2>Sean</h2>
</div>
<div class="tl">
<ol>
<li>
<p>I was once shot at by somebody who thought I was a fox.</p>
</li>
<li><p>I’ve spent some time at Chernobyl.</p></li>
<li><p>I’m originally from Wales.</p></li>
</ol>
<div class="img-wrapper">
<img src="img/palmtree3.jpg" alt="palm tree" />
</div>
</div>
</section>
</main>
<footer>
<h3>by Omer, Seyed and Sean</h3>
</footer>
</body>
</html>