forked from juthikashetye/Code-Range-Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheadingsPara.html
90 lines (67 loc) · 2.11 KB
/
headingsPara.html
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
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Favorite Things</title>
</head>
<body>
<header>
<h1>My Favorite Things</h1>
</header>
<main>
<h2>Favorite Food</h2>
<article>
<h3>Chocolate Cake</h3>
<section>
<h4>Recipe</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<br><br><br>Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
</section>
<section>
<h4>History</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
<pre>
I had a cat,
Who was so fat.
He could not even,
Sit on his mat.
He had a hat,
That did not fit.
He put it on,
And then it split
</pre>
<p>
I had a cat,
Who was so fat.
He could not even,
Sit on his mat.
He had a hat,
That did not fit.
He put it on,
And then it split
</p>
<p>Thisisa<wbr>veryvery<wbr>veryvery<wbr>veryveryvery<wbr>veryveryvery<wbr>veryvery<wbr>veryveryvery<wbr>veryvery<wbr>veryver<wbr>yveryvery<wbr>veryveryvery<wbr>veryvery<wbr>longword</p>
<aside>
<h5>Trivia</h5>
<p>Chocolate is made from cocoa beans</p>
</aside>
</section>
</article>
<hr>
<article>
<h3>Ramen</h3>
<section>
<h4>Recipe</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
</section>
<section>
<h4>History</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
</section>
</article>
</main>
<footer>
<p>Copyright 2020 Code Range, Juthika Shetye</p>
</footer>
</body>
</html>