-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
95 lines (84 loc) · 1.84 KB
/
Index.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
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Asif's Web Page</title>
<style>
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f9f9f9;
color: #333;
}
/* Header Styles */
header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 20px 0;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
/* Main Content Styles */
main {
padding: 20px;
text-align: center;
}
main h2 {
color: #4CAF50;
}
main p {
font-size: 1.2em;
margin: 10px 0;
}
address {
font-style: normal;
line-height: 1.8;
margin: 20px 0;
}
/* Footer Styles */
footer {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 10px 0;
position: relative;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
font-size: 0.9em;
}
</style>
</head>
<body>
<!-- Header -->
<p>why the fuck itsnot working</p>
<header style="background-color: #f4f4f4; text-align: center; padding: 10px;">
<h1>Welcome to Asif's Web Page</h1>
</header>
<!-- Main Content -->
<main style="padding: 20px; text-align: center;">
<h2>About Me</h2>
<p>Hi, I'm Asif. This is my personal web page where I share my ideas and details!</p>
<h3>Contact Address</h3>
<address>
123 Main Street<br>
Your City, Your State<br>
Your Country<br>
Email: asif@example.com
</address>
</main>
<!-- Footer -->
<footer style="background-color: #f4f4f4; text-align: center; padding: 10px; margin-top: 20px;">
<p>© 2025 Asif's Web Page. All Rights Reserved.</p>
</footer>
</body>
</html>