Files
Harshit-Sachdev/Week-1/Day-4/index.html

47 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Fundamentals Practice</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="main-header">
<h1>CSS Fundamentals</h1>
<p>Week 1 Day 4 Practice</p>
</header>
<section class="content">
<h2>About CSS</h2>
<p class="description">
CSS is used to style HTML elements and improve the visual appearance
of web pages. It allows developers to control layout, spacing, colors,
fonts, and overall design.
</p>
</section>
<section class="content">
<h2>Topics Practiced</h2>
<ul>
<li>CSS Selectors</li>
<li>Box Model</li>
<li>Text Styling</li>
<li>Colors and Background</li>
<li>Display and Position</li>
</ul>
</section>
<div class="box-container">
<div class="box">Box One</div>
<div class="box">Box Two</div>
<div class="box">Box Three</div>
</div>
<footer>
<p>Internship Practice Week 1</p>
</footer>
</body>
</html>