-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchild.html
More file actions
45 lines (39 loc) · 2.56 KB
/
child.html
File metadata and controls
45 lines (39 loc) · 2.56 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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>A Blog For All Ages</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<script type="text/javascript">
function toggle(obj) {
var obj=document.getElementById(obj);
if (obj.style.display == "block") obj.style.display = "none";
else obj.style.display = "block";
}
</script>
<h1><span style="color:blue"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cc/Emojione_1F602.svg/1200px-Emojione_1F602.svg.png" style="width:35px; height:35px; border:none">A Blog - Add laughter to your life journey...Make it wonder</span></h1>
<h2><span>The Child</span></h2>
<!-- child -->
<a href="child.html"><img alt="pic" src="images/Kidsimage.jpg" /></a>
<div class="entry">
<h3 onClick="toggle('body1')" style="color: red"><em>Aug 22, 2020</em> A Dog and His Dolphin</h3>
<div id="body1" style="display:none;">
<img src="https://www.sciencemag.org/sites/default/files/styles/article_main_large/public/dogs_1280p_0.jpg?itok=cnRk0HYq">
<p style="color: red">Here's a funny story about a golden retriever and how he <a href="https://www.boredpanda.com/golden-retriever-rescued-dolphin-best-friends/?utm_source=google&utm_medium=organic&utm_campaign=organic" target="_blank" style="color: blue">became friends with a dolphin</a>. My favorite part is the smile on his face when he watches his new friend on video as he swims in his watery home at the aquarium.</p>
<p style="color: red">I hope you'll <a href="https://www.boredpanda.com/golden-retriever-rescued-dolphin-best-friends/?utm_source=google&utm_medium=organic&utm_campaign=organic" target="_blank" style="color: blue">click on the link</a> and read this great story!</p>
</div>
</div>
<div class="entry">
<h3 onClick="toggle('body2')" style="color: darkblue"><em>July 30, 2020</em> Kids and Candy</h3>
<div id="body2" style="display:none;">
<p style="color: darkblue">Just like all mothers out there, I’m trying to control (and to cut down) the amount of sweets my 4-year-old kid eats. Caught him eating candy without my permission recently. So I go, “Who gave you these? Why did you take them?” The little one answers, “Because I have hands.”</p>
<img src="https://c8.alamy.com/comp/PJ7KJM/assorted-gummy-candies-in-the-shop-jelly-sweets-in-different-shapes-and-colors-PJ7KJM.jpg">
</div>
</div>
<br>
<h3><a href="index.html">Go Back</a></h3>
</body>
</html>