HTML/html5.html

18 lines
633 B
HTML

<!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>