-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask-1.html
More file actions
40 lines (40 loc) · 1.25 KB
/
Copy pathTask-1.html
File metadata and controls
40 lines (40 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./Task1.css">
</head>
<body>
<header>
<h1>Welcome to your Website Task</h1>
<ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</header>
<main>
<div class="card">
<h2>About css</h2>
<h3>Cascading Style Sheets (CSS) allow you to style and layout your web pages, adding colors, spacing, and more. </h3>
</div>
<div class="card">
<h2>Responsive Design</h2>
<h3>Responsive design ensures your webpage looks great on all devices, from desktops to mobile phones</h3>
</div>
<div class="card">
<h2>Box Model</h2>
<h3>The CSS box model describes the rectangular boxes generated for elements. It includes margins, borders, padding, and the actual content</h3>
</div>
</main>
<footer>
Created by [Student Name] |
Follow us on
<a href="#">Instagram</a> |
<a href="#">Twitter</a> |
<a href="#">Linkedin</a>
</footer>
</body>
</html>