Add 'html5.html'

This commit is contained in:
Sarimoko 2021-07-08 03:37:14 +00:00
parent ce08b2c2d5
commit 70871d6867
1 changed files with 18 additions and 0 deletions

18
html5.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sari-Heyo | HTML 5</title>
<meta name="author" content="Sarimoko by Travis Reames">
<meta name="description" content="Heyo is a HTML Hello World exmaple for devs to quickly start HTML5 projects!">
<meta name="keywords" content="HTML, CSS, JavaScript, HTML5, CSS3, JS">
</head>
<body>
<h1>Sari-Heyo | HTML | Hello world!</h1>
<p id="heyo-js"></p>
<script>
document.getElementById("heyo-js").innerHTML = "Sari-Heyo | JavaScript | Hello world!";
</script>
</body>
</html>