-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (94 loc) · 2.16 KB
/
index.html
File metadata and controls
110 lines (94 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Developer Landing Page</title>
<style>
/* Reset default browser styles */
body,
h1,
p {
margin: 0;
padding: 0;
}
/* Page container */
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
/* Heading */
h1 {
font-size: 36px;
/* Increase the font size */
font-weight: bold;
/* Add bold font weight */
text-align: center;
color: #333;
/* Change the color */
margin-bottom: 20px;
}
/* Subheading */
h2 {
font-size: 24px;
/* Increase the font size */
text-align: center;
color: #555;
/* Change the color */
margin-bottom: 10px;
}
/* Description */
p {
font-size: 16px;
margin-bottom: 20px;
text-align: center;
}
/* Button */
.cta-button {
display: inline-block;
padding: 10px 20px;
background-color: #ff0000;
/* Change the background color */
color: #fff;
text-decoration: none;
font-size: 18px;
border-radius: 5px;
border: none;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #cc0000;
/* Change the background color on hover */
}
/* Media queries for responsiveness */
@media (max-width: 768px) {
h1 {
font-size: 26px;
}
h2 {
font-size: 18px;
}
p {
font-size: 14px;
}
.cta-button {
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to My Developer Landing Page</h1>
<h2>IN3PIRE - Empowering new creators!</h2>
<p>I specialize in web development and have experience with various technologies and frameworks.</p>
<a href="#" class="cta-button">View My Projects</a>
</div>
</body>
</html>