-
Notifications
You must be signed in to change notification settings - Fork 21
/
Frontend.html
90 lines (79 loc) · 1.95 KB
/
Frontend.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impressive Frontend Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
header h1 {
font-size: 2.5rem;
margin: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.hero {
text-align: center;
padding: 100px 0;
}
.hero h2 {
font-size: 3rem;
margin-bottom: 20px;
}
.hero p {
font-size: 1.25rem;
color: #555;
}
.cta-button {
display: inline-block;
background-color: #007BFF;
color: #fff;
font-size: 1.5rem;
padding: 15px 30px;
margin-top: 20px;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
}
.cta-button:hover {
background-color: #0056b3;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}
</style>
</head>
<body>
<header>
<h1>Impressive Frontend Page</h1>
</header>
<div class="container">
<section class="hero">
<h2>Welcome to Our Page</h2>
<p>This is a simple example of an impressive frontend page.</p>
<a href="#" class="cta-button">Learn More</a>
</section>
</div>
<footer>
© 2023 Impressive Frontend Page
</footer>
</body>
</html>