You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML Introduction</title>
</head>
<body>
<!-- Create a heading text -->
<h1>Zuitt Coding Bootcamp</h1>
<!-- Creates a smaller heading text -->
<h3>John Doe</h3>
<!-- Creates a horizontal rule -->
<hr>
<!-- Creates a paragraph text -->
<!-- Introductory paragraph -->
<!-- br creates a line break in between text -->
<!-- em creates emphasis on text -->
<!-- strong creates importance on text (by making it bold) -->
<p>Welcome to <em>Zuitt</em>!
<br>
In this online bootcamp course, you will learn a lot of things. Let's enumerate all the things that will make you a <strong>full-stack web developer</strong>.</p>
<!-- ul Creates an unordered list with bullet points -->
<ul>
<!-- li Creates a list item -->
<li>Languages</li>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
</ul>
<li>Frameworks and Libraries</li>
<!-- ol Creates an ordered list with numbered points -->
<ol>
<li>Bootstrap</li>
<li>Express.js</li>
<li>React.js</li>
</ol>
<li>Tools</li>
<ol>
<li>Git</li>
<li>Zuitt Git</li>
<li>Sublime Text 4</li>
<li>Postman</li>
<li>Others</li>
<ul>
<li>MongoDB</li>
<li>Mongo Compass</li>
</ul>
</ol>
</ul>
<!-- Closing paragraph -->
<p>There is a lot to learn in this bootcamp. It may look overwhelming at the beginning, but it's all worth it when you graduate!</p>
</body>
</html>