scrimba
HTML5 | Web development Bootcamp
Web development 30 Days Course - #HTML5 #08
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Web development 30 Days Course - #HTML5 #08
AboutCommentsNotes
Web development 30 Days Course - #HTML5 #08
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5 Web Page Layout</title>
<style type="text/css">
body{
font: 12px verdana, sans-serif;
margin: 0px;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>HTML5 LEARNING</h1>
</header>
<div class="wrapper">
<div class="content">
<section>
<h2>Welcome to our site</h2>
<p>Here you will learn to create websites...</p>
</section>
</div>
</div>
<footer>
<p>copyright &copy; LEARNING.com</p>
</footer>
</div>
</body>
</html>
Console
index.html
-5:09