Day 3 is all about the HTML Boilerplate. Enough of the HTML tags for now, you cannot tell why HTML rules without trying it out yourself.
Let's do something. But first, you will have to download and set up VS code. I will link a video tutorial below to show you how to do that.
It is time to code!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>
Above is the HTML boilerplate and it is a basic template that allows you to start writing your code. Copy the content into VS code and save your file.
You might have noticed some html tags from the previous article used here. Now to explain the content of the HTML Boilerplate.
DOCTYPE
...
References:
[
#20daysinFrontendwithAA](twitter.com/hashtag/20daysinFrontendwithAA?..)