Make a Website with least codes in NotePad. Here Are Easy STEPS
Certainly! Here's an example of a simple HTML webpage:
```html<!DOCTYPE html>
<html>
<head>
<title>My Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
h1 {
color: #333333;
}
p {
color: #666666;
}
</style>
</head>
<body>
<h1>Welcome to My Webpage</h1>
<p>This is a sample HTML webpage.</p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<a href="https://www.example.com">Visit Example Website</a>
</body>
</html>
```
In this example, we have a basic structure of an HTML document. The `<head>` section contains the title of the webpage and some CSS styles defined within the `<style>` tags. The `<body>` section contains the actual content of the webpage.
The content includes an `<h1>` heading, a paragraph `<p>`, an unordered list `<ul>` with three list items `<li>`, and a hyperlink `<a>` that directs to an example website.
Feel free to modify the HTML code according to your needs and add more elements or styles to customize the webpage.
Comments
Post a Comment