-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (88 loc) · 1.71 KB
/
Copy pathindex.html
File metadata and controls
105 lines (88 loc) · 1.71 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
100
101
102
103
104
105
<!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>
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}
body{
background:#f4f4f4;
}
header{
background:#222;
color:white;
padding:15px;
text-align:center;
}
nav{
background:#444;
padding:10px;
text-align:center;
}
nav a{
color:white;
text-decoration:none;
margin:0 15px;
font-size:18px;
}
.hero{
height:300px;
background:linear-gradient(to right, #4facfe, #00f2fe);
display:flex;
justify-content:center;
align-items:center;
color:white;
font-size:40px;
font-weight:bold;
}
.content{
padding:40px;
text-align:center;
}
.btn{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#007bff;
color:white;
text-decoration:none;
border-radius:5px;
}
footer{
background:#222;
color:white;
text-align:center;
padding:15px;
margin-top:30px;
}
</style>
</head>
<body>
<header>
<h1>My First Website</h1>
</header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Contact</a>
</nav>
<section class="hero">
Welcome
</section>
<section class="content">
<h2>Hello World!</h2>
<p>This is a simple HTML website created in Acode.</p>
<a href="#" class="btn">Learn More</a>
</section>
<footer>
© 2025 My Website
</footer>
</body>
</html>