Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

simple website using html and css

<!-- index.html -->

<!doctype html>
  <html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Page Title Goes Here</title>
    <meta name="description" content="Description Goes Here">
    <link rel="stylesheet" href="style.css">
  </head>
  <body>
  	<div class="red-box"></div>
  
    <style type="text/css">
    	.red-box {
        	width: 30px;
            height: 30px;
            background-color: red;
        }
    </style>
  </body>
</html>
 
PREVIOUS NEXT
Tagged: #simple #website #html #css
ADD COMMENT
Topic
Name
7+6 =