html 5
Idk if this works in other editors but in VScode, type ! tab and it should automatically paste in all the starting info
Garfield
Idk if this works in other editors but in VScode, type ! tab and it should automatically paste in all the starting info
<html>
<body>
<h1>HTML ROCKS!!</h1>
</body>
</html>
HTML5 is the 5th version of HTML and it also is a markup language.
What is coded in HTML shows up on screen
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- ADD CSS HERE -->
<title>Hello, world!</title>
</head>
<body>
<h1>Hello, world!</h1>
<!-- ADD JAVASCRIPT HERE-->
</body>
</html>