-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloud.html
More file actions
99 lines (88 loc) · 2.28 KB
/
cloud.html
File metadata and controls
99 lines (88 loc) · 2.28 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Website</title>
<style>
/* Reset some default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
/* Navbar */
header {
background: #333;
color: white;
padding: 15px 20px;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
}
/* Hero Section */
.hero {
text-align: center;
padding: 100px 20px;
background: #f4f4f4;
}
.hero h2 {
font-size: 2rem;
}
.hero .btn {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
background: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
}
.hero .btn:hover {
background: #0056b3;
}
/* Footer */
footer {
text-align: center;
padding: 15px;
background: #333;
color: white;
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<nav>
<h1>My Website</h1>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h2>Welcome to My Website</h2>
<p>Building simple and responsive websites with HTML & CSS.</p>
<a href="#" class="btn">Get Started</a>
</section>
<footer>
<p>© 2025 My Website. All rights reserved.</p>
</footer>
</body>
</html>