Otavio Code
Otavio Code
DOCTYPE html>
<html lang = "en">
<head>
</head
<body>
<header>
<div class = "header-div">
<h1>This is the header of the html page.</h1>
</div>
</header>
<section>
<h1>Form inputs</h1>
<input type = "text">
<input type = "password">
<input type = "email">
<input type = "textbox">
<input type = "radio">
<input type = "checkbox">
<input type = "scale">
<input type = "submit"
</section>
<h2>DIV element</h2>
<div></div>
<section>
<h3>Unorganized lists</h3>
<ul>
<li>This is<//li>
<li>An unordered list</li>
<li>Full of</li>
<li>Unordered items.</li>
</ul>
</section>
<ol>
<li>This is</li>
<li>an organized list</li>
<li>full of</li>
<li>organized items</li>
</ol>
<section>
<table>
<caption>This is the Table element</caption>
<tr>
<td></td>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<td><a href=""></a></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</table>
</section>
<div>
<img src = " " alt = " " >
<hr></hr>
<i></i>
<strong></strong>
</div>
<section>
</section>
<footer>
</footer>
</body>
</html>
CSS:
*{
box-sizing: border-box;
}
body{
margin: 0;
padding: 15px;
}
.header-div{
border: 1px solid;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
}
<nav class="navbar">
<ul class = "nav-link">
<li class = "#">Welcome</li>
<li class= "#">About</li>
<li class= "#">Pricing</li>
</ul>
</nav>
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
.navbar{