Answers for "simple website html css"

CSS
1

html and css websites

Every website use html and css in front end what you trying to say by html and css website ?
if it mean where can i learn HTML,CSS
you can go to w3schools.com
Posted by: Guest on January-24-2022
-1

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>
Posted by: Guest on February-20-2022

Browse Popular Code Answers by Language