<!--What dose Html look ike?-->
<html>
<head>
<script>
//this is a javascript
console.log("hello world") //print "hello world"
var x = 10 //varable
var x = x + 10 //add 10 to a varable
console.log(x) //print x
</script>
</head>
<body>
<h1>This is a headder</h1>
<p>this is a paragraph</p>
<p class="Text_1" id="P1">this is a paragraph with an id and a class</p>
</body>