File tree Expand file tree Collapse file tree 1 file changed +52
-0
lines changed
Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < title > My Landing Page</ title >
7+ < style >
8+ body {
9+ font-family : Arial, sans-serif;
10+ margin : 0 ;
11+ padding : 0 ;
12+ background-color : # f4f4f4 ;
13+ }
14+ header {
15+ background-color : # 4CAF50 ;
16+ color : white;
17+ padding : 1em ;
18+ text-align : center;
19+ }
20+ main {
21+ padding : 2em ;
22+ text-align : center;
23+ }
24+ footer {
25+ background-color : # 333 ;
26+ color : white;
27+ padding : 1em ;
28+ text-align : center;
29+ position : fixed;
30+ bottom : 0 ;
31+ width : 100% ;
32+ }
33+ a {
34+ color : # 4CAF50 ;
35+ text-decoration : none;
36+ }
37+ </ style >
38+ </ head >
39+ < body >
40+ < header >
41+ < h1 > Welcome to My Landing Page</ h1 >
42+ </ header >
43+ < main >
44+ < p > This is a simple landing page created as a starting point for this website.</ p >
45+ < p > Feel free to customize it further according to your needs.</ p >
46+ < p > < a href ="https://example.com "> Learn more</ a > </ p >
47+ </ main >
48+ < footer >
49+ < p > © 2024 My Landing Page. All rights reserved.</ p >
50+ </ footer >
51+ </ body >
52+ </ html >
You can’t perform that action at this time.
0 commit comments