0% found this document useful (0 votes)
8 views1 page

HTML Code for Simple Website Design

Uploaded by

karanmandal3588
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

HTML Code for Simple Website Design

Uploaded by

karanmandal3588
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html>
<head>
<title>My First Website</title>
<style>
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
h1 {
color: #333;
}
</style>
</head>
<body>
<h1>Welcome to My First Website!</h1>
<p>This is a simple website created to run in Visual Studio Code.</p>
</body>
</html>

You might also like