Skip to content

02 - main part 1- basic text elements #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 01-header-title
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions 01-html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,38 @@
<header>
<h1>Boolean Coding Week</h1>
</header>

<main>
<h2>Intro to HTML</h2>
<h3>Basic Text Elements</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Enim quia suscipit recusandae velit tempora repudiandae
molestias sed, officia doloribus ipsam quas vero odit officiis saepe molestiae dignissimos iste? Aliquid est
necessitatibus ab quibusdam voluptas molestias pariatur corrupti incidunt debitis ea nobis iste laboriosam dolorum
a maxime, dicta in ratione explicabo!
</p>

<p>Colours of the rainbow:</p>
<ul>
<li>Red</li>
<li>Orange</li>
<li>Yellow</li>
<li>Green</li>
<li>Blue</li>
<li>Indigo</li>
<li>Violet</li>
</ul>

<p>My Daily Routine:</p>
<ol>
<li>Wake up</li>
<li>Have breakfast</li>
<li>Get changed</li>
<li>Teach morning class</li>
<li>Go to gym</li>
<li>Have lunch</li>
<li>...</li>
</ol>
</main>
</body>

</html>