HTML source
Created By: chatGPT
To create a basic HTML page, you will need to use essential HTML tags. Here is a simple example of a basic HTML structure:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First HTML Page</title>
</head>
<body>
<h1>Welcome to My Page</h1>
<p>This is my first web page built with **HTML**.</p>
</body>
</html>
The <!DOCTYPE html> declaration defines the document type and HTML version. Within the
<html>
tag, you have a <head>
section for meta information and a <body>
section that contains the visible content of the web page.<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
You can include various elements like headings, paragraphs, images, and links. Below is how you can add an image and a link to your HTML document:
<body>
<h1>My Favorite Animal</h1>
<img src="https://example.com/image.jpg" alt="My Image" />
<p>Learn more about this animal <a href="https://example.com">here</a>.</p>
</body>
To style your HTML elements, you can use CSS. Here is how you can include a simple CSS style in a
<style>
tag within the <head>
section:<head>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
h1 {
color: #333;
}
p {
color: #666;
}
</style>
</head>
By combining HTML and CSS, you can create visually appealing web pages. Below is an example that includes styling for the body and headings:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Styled Page</title>
<style>
body {
font-family: 'Helvetica Neue', sans-serif;
background-color: #ffffff;
margin: 20px;
}
h1 {
color: #4CAF50;
}
</style>
</head>
<body>
<h1>Hello, World!</h1>
<p>This page has been styled with **CSS**.</p>
</body>
</html>