This repository was archived by the owner on Mar 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss5.html
More file actions
72 lines (66 loc) · 1.46 KB
/
css5.html
File metadata and controls
72 lines (66 loc) · 1.46 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>My First Styled Page</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #c6ec91;
}
h1 {
font-size: 24px;
margin-bottom: 20px;
color: #00698f;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #333;
color: #fff;
}
nav a {
text-decoration: none;
color: #fff;
padding: 10px 20px;
}
nav a:hover {
background-color: #444;
}
.content {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #e8b6b6;
border: 1px solid #ddd;
}
.content p {
margin-bottom: 20px;
}
</style>
</head>
<body>
<h1>My First Styled Page</h1>
<nav>
<a href="#">Home page</a>
<a href="#">Musings</a>
<a href="#">Town</a>
<a href="#">Links</a>
</nav>
<div class="content">
<p>Welcome to my styled page!</p>
<p>It lacks images, but at least it has style. And it has links, even if they don't go anywhere...</p>
<p>There should be more here, but I don't know what yet.</p>
<p>_____________________________________________________________________________________</p>
<p>Made 13 june 2024 by myself(chakri).</p>
</div>
</body>
</html>