<head>
<title>
review
</title>
</head>
<body>
<header>
</header>
<main>
</main>
<footer>
</footer>
</body>
CSS cascading style sheet and its for styling
-inline:
text
-internal style: in the same html file <title> review </title> <style>
p{
color:red;
}
</style>
</head>
-external style
creating a new css file "style.css"
first link in html
<title> review </title> <link rel="stylesheet" href="style.css">
</head>
p{ color:red; } JavaScript interaction and make it more dynamic:
<script> var name="samer" </script>or make a file and link it
<script src="app.js"> </script>