0% found this document useful (0 votes)
5 views2 pages

MKCL Ass 2

This document is a basic HTML webpage structure that includes a header, main content, and footer. It highlights the roles of HTML for structure, CSS for styling, and JavaScript for interactivity. The page is styled with simple CSS to enhance readability and presentation.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views2 pages

MKCL Ass 2

This document is a basic HTML webpage structure that includes a header, main content, and footer. It highlights the roles of HTML for structure, CSS for styling, and JavaScript for interactivity. The page is styled with simple CSS to enhance readability and presentation.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title>Basic HTML Document</title>

<style>

body {

font-family: Arial, sans-serif;

background-color: #f4f4f4;

color: #333;

margin: 0;

padding: 20px;

h1 {

color: #007BFF;

p{

line-height: 1.6;

</style>

</head>

<body>

<header>

<h1>Welcome to My Basic HTML Page</h1>

</header>

<main>

<p>This is a simple HTML document to demonstrate the basic structure of a webpage.</p>

<ul>

<li>HTML defines the structure of the page.</li>


<li>CSS is used for styling.</li>

<li>JavaScript can add interactivity.</li>

</ul>

</main>

<footer>

<p>&copy; 2023 Your Name. All rights reserved.</p>

</footer>

</body>

</html>

You might also like