website html and css code example

Example 1: html template code

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your title</title>
</head>
<body>
    <!--Your body-->
  
</body>
</html>

<!--------------------Generated in VSCode with shortcut !-------------------->

Example 2: use w3 css on your website

To use w3-css on your project just add the following cdn to your HTML head tag
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
from here you'll be able to call any w3-css class and use it in your project.

Tags:

Html Example