๐ Title: Create Your First Web Page with HTML and CSS (Beginner Guide)
๐น Step 1: Basic HTML Page
๐น Step 2: Add CSS Styling
✅ Output
-
Clean background
-
Header and paragraph styled
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Hello World!</h1>
<p>This is my first webpage using HTML.</p>
</body>
</html>
<head>
<style>
body {
background-color: #f4f4f4;
font-family: Arial;
padding: 20px;
}
h1 {
color: #333;
}
</style>
</head>
Clean background
Header and paragraph styled
Comments
Post a Comment