-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebApp.html
More file actions
115 lines (109 loc) · 2.77 KB
/
webApp.html
File metadata and controls
115 lines (109 loc) · 2.77 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
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advanced Web App Front Page</title>
<style>
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #ffffff;
color: #333;
}
header {
background: #fff;
color: #333; /* Changed text color for contrast */
padding: 1rem 0;
text-align: center;
}
header h1 {
margin: 0;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px 0;
}
#hero {
background: #ffc0cb;
color: #333;
padding: 165px 0; /* Increased padding for more vertical length */
text-align: center;
}
#hero h2 {
margin-top: 0;
font-size: 2.5em;
}
#hero p {
font-size: 1.2em;
margin-bottom: 30px;
}
.btn {
display: inline-block;
background: #ff69b4; /* Changed to a slightly darker pink for button */
color: #fff;
padding: 10px 25px;
text-decoration: none;
border-radius: 5px;
font-size: 1.1em;
}
.btn:hover {
background: #ff1493; /* Changed hover color */
}
#features {
padding: 40px 0;
text-align: center;
}
#features .feature-item {
margin-bottom: 30px;
}
#cta {
background: #333;
color: #fff;
padding: 40px 0;
text-align: center;
}
#cta h2 {
margin-top: 0;
margin-bottom: 20px;
}
#cta .btn {
background: #28a745;
color: #fff;
}
#cta .btn:hover {
background: #218838;
}
footer {
text-align: center;
padding: 30px;
margin-top: 30px;
color: #333; /* Changed text color for contrast */
background-color: #fff; /* Changed to white */
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Header</h1>
</div>
</header>
<section id="hero">
<div class="container">
<h2>Hello! Welcome</h2>
<p>SHPE Innovation Program </p>
<a href="#" class="btn">Get Started</a>
</div>
</section>
<footer>
<div class="container">
<p>© All rights reserved.</p>
</div>
</footer>
</body>
</html>