-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS-styling.html
More file actions
104 lines (104 loc) · 2.82 KB
/
CSS-styling.html
File metadata and controls
104 lines (104 loc) · 2.82 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS-SPACING</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #960b0b;
padding: 20px;
color: #fff;
text-align: center;
margin: 20px;
border-radius: 15px;
}
#intro {
background-color: #272525;
padding: 20px;
margin: 20px;
border-radius: 15px;
}
#skills {
background-color: #201e1e;
padding: 20px;
margin: 20px;
border-radius: 15px;
}
#skills ul {
list-style: none;
padding: 0;
}
#skills li {
color: white;
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 10px;
border-radius: 15;
}
#contact {
background-color: #960b0b;
padding: 20px;
color: #fff;
margin: 20px;
border-radius: 15px;
}
#contact a {
color: #fff;
text-decoration: none;
margin-right: 10px;
}
@media (max-width: 768px) {
#introduction,
#skills,
#contact {
margin: 10px;
padding: 15px;
}
}
h2, p {
color: #fff;
}
</style>
</head>
<body>
<header>
<h1>Dennis Obare</h1>
</header>
<section id="intro">
<h2>Hello There!</h2>
<p>
My name is Dennis, I am a passionate and dedicated software developer
with a keen interest in crafting efficient and elegant solutions to
complex problems. With a strong foundation in computer science and
healthcare and a commitment to lifelong learning, I'm excited to embark
on this journey of innovation and growth in the world of technology.
</p>
</section>
<section id="skills">
<h2>My Skills</h2>
<ul>
<li>HTML5</li>
<li>CSS3</l>
<li>Javascript</li>
<li>Node JS</li>
<li>React</li>
<li>MongoDB</li>
</ul>
</section>
<footer id="contact">
<h2>Contact Information</h2>
<p>Email: <a href="mailto:deobami09@gmail.com">deobami09@gmail.com</a></p>
<p>
<a href="www.linkedin.com/in/dennis-obare-33a2b2262" target="_blank">Connect on LinkedIn</a>
<a href="https://x.com" target="_blank">Follow me on twitter</a>
<a href="https://instagram.com" target="_blank">Follow me on instagram</a>
</p>
</footer>
</body>
</html>