Skip to content

Commit 4da0029

Browse files
committed
Main: Basic text elements
1 parent 4c3f122 commit 4da0029

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

01-html/index.html

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,38 @@
1111
<header>
1212
<h1>Boolean Coding Week</h1>
1313
</header>
14+
15+
<main>
16+
<h2>Intro to HTML</h2>
17+
<h3>Basic Text Elements</h3>
18+
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Enim quia suscipit recusandae velit tempora repudiandae
19+
molestias sed, officia doloribus ipsam quas vero odit officiis saepe molestiae dignissimos iste? Aliquid est
20+
necessitatibus ab quibusdam voluptas molestias pariatur corrupti incidunt debitis ea nobis iste laboriosam dolorum
21+
a maxime, dicta in ratione explicabo!
22+
</p>
23+
24+
<p>Colours of the rainbow:</p>
25+
<ul>
26+
<li>Red</li>
27+
<li>Orange</li>
28+
<li>Yellow</li>
29+
<li>Green</li>
30+
<li>Blue</li>
31+
<li>Indigo</li>
32+
<li>Violet</li>
33+
</ul>
34+
35+
<p>My Daily Routine:</p>
36+
<ol>
37+
<li>Wake up</li>
38+
<li>Have breakfast</li>
39+
<li>Get changed</li>
40+
<li>Teach morning class</li>
41+
<li>Go to gym</li>
42+
<li>Have lunch</li>
43+
<li>...</li>
44+
</ol>
45+
</main>
1446
</body>
1547

1648
</html>

0 commit comments

Comments
 (0)