-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask4.html
More file actions
61 lines (54 loc) · 2.37 KB
/
Task4.html
File metadata and controls
61 lines (54 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Victoria's Journal</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<h1>Victoria's Journal</h1>
<p class="tagline">So fresh and so clean clean</p>
</header>
<main>
<aside id="friends">
<div class="box">
<h2>My Friends</h2>
<ul>
<li><a href="#">190M Buddies</a></li>
<li><a href="#">Big Will</a></li>
<li><a href="#">Connie P.</a></li>
<li><a href="#">Person who doesn't exist</a></li>
</ul>
</div>
</aside>
<section id="entries">
<article class="entry">
<div class="box">
<h2><span class="date">04/09/2008:</span> Spatulas</h2>
<p>
<img src="https://m.media-amazon.com/images/I/71ARSWzCZBL.jpg"
alt="spatula" class="right-img" width="100" height="100">
Yesterday I went to the store and bought some much-needed <strong>spatulas</strong>!
What better way to say "I love myself" than to buy myself a spatula?
</p>
</div>
</article>
<article class="entry">
<div class="box">
<h2><span class="date">04/08/2008:</span> Cookie Cupcakes</h2>
<p>
<img src="https://ichef.bbci.co.uk/food/ic/food_16x9_1600/recipes/cupcakes_93722_16x9.jpg"
alt="cookie monster cupcakes" class="right-img" width="100" height="100">
My favorite character is <strong>Cookie Monster</strong>, and my favorite dessert is cupcakes.
So Cookie Cupcakes are truly the <em>best of both worlds</em>.
Fun fact: Cookie Monster once said, "Sometimes me think, 'What is love?'
And then me think love is what cookies is for. Me give up the last cookie for you."
</p>
</div>
</article>
</section>
</main>
<div style="display:none;">unique-submission-id-2025-v2</div>
</body>
</html>