home page html css code example
Example 1: how to link your css file to html
<head>
<link rel='stylesheet' href='style.css'>
</head>
Example 2: 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>