home page style css code example
Example 1: html template
<!DOCTYPE>
<html>
<head>
<title>Title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>
Example 2: html layout
<!DOCTYPE html> <!-- Start of coding page -->
<html> <!-- Start of html coding -->
<head> <!-- Start of head -->
<title>TITLE</title> <!-- Title -->
<script>
//JavaScript
</script>
<style>
</style>
</head> <!-- End of head -->
<body> <!-- Start of body -->
<h1>Hello!</h1>
</body> <!-- End of body -->
</html> <!-- End of html coding -->