<!DOCTYPE html> <!----> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Page tittle --> <title>S03: HTML Introduction</title> <style> * { background: black; color: white; font-family: Arial, Helvetica, sans-serif; width: 90%; margin: 1rem auto; } </style> </head> <body> <!-- Creates a heading text --> <!-- Heading tag sizes [h1-h6] --> <h1>Zuitt Coding Bootcamp</h1> <h3>John Doe</h3> <hr> <p>Welcome to <em>Zuitt!</em> <br><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> <li>Languages</li> <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> </ul> <li>Frameworks and Libraries</li> <ol> <li>Bootstrap</li> <li>ExpressJS</li> <li>ReactJS</li> </ol> <li>Tools</li> <ol> <li>Git</li> <li>Zuit Git</li> <li>Sublime Text</li> <li>Postman</li> <li>Others</li> <ul> <li>MongoDB Atlas</li> <li>MongoDB 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>