Skip to content

Commit 4391558

Browse files
committed
my profile page
0 parents  commit 4391558

File tree

7 files changed

+215
-0
lines changed

7 files changed

+215
-0
lines changed

images/kinjaz.png

543 KB
Loading

images/mech-design.png

193 KB
Loading

images/nike-af1-para-noise.png

172 KB
Loading

images/profile-pic.png

1.17 MB
Loading

images/silicon-valley.png

816 KB
Loading

index.html

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<script
5+
src="https://kit.fontawesome.com/5a6835df9f.js"
6+
crossorigin="anonymous"
7+
></script>
8+
<link rel="stylesheet" href="style.css" />
9+
10+
<meta charset="UTF-8" />
11+
<title>Profile Page</title>
12+
</head>
13+
<body>
14+
<div class="container">
15+
<div class="card-header">
16+
<h1>
17+
Greetings! I'm Henry 🐲
18+
</h1>
19+
<img
20+
src="/images/profile-pic.png"
21+
alt="profile-pic"
22+
width="15%"
23+
class="img-avatar"
24+
/>
25+
<p>
26+
I'm Tech Entreprenuer 🎩, who has a keen interest in UI/UX Design,
27+
<br />web development 💻, dance and fashion 🤸🏼.<br />
28+
I am also working along a management consulting firm called<br />
29+
<a class="link-color" href="https://www.beakerandflint.com/"
30+
>Beaker & Flint</a
31+
>
32+
</p>
33+
<button class="button-color" href="https://github.com/henry88lay"
34+
>Check out my <i class="fab fa-github-alt"></i
35+
></a>
36+
</div>
37+
38+
<div class="card-content">
39+
<h2>UI/UX Design</h2>
40+
<p>
41+
I am passionate about the human design focus of <br />
42+
<strong>UX/UI Design</strong>
43+
</p>
44+
<img src="/images/mech-design.png"" alt="mech-design" class="img-m-width
45+
img-card">
46+
</div>
47+
<div class="card-content">
48+
<h2>Full-stack Web Development</h2>
49+
<p>
50+
To me being a Full-Stack Web Developer is alot like mix martial arts
51+
where you you must have the ability to solve or build a solution with
52+
the right tools and mindset
53+
</p>
54+
<img src="/images/silicon-valley.png"" alt="silicon-valley"
55+
class="img-m-width img-card">
56+
</div>
57+
58+
<div class="card-content">
59+
<h2>Dance 🤸🏼</h2>
60+
<p>
61+
dance is a art form that I thoroughly enjoy doing. from the creativity
62+
to the joy it brings to people.
63+
</p>
64+
<img src="/images/kinjaz.png"" alt="kinjaz" class="img-m-width img-card">
65+
</div>
66+
<div class="card-content">
67+
<h2>Fashion 🎩</h2>
68+
<p>
69+
They say that dance is the first step into the world of art. and fashion
70+
is second step towards self expression
71+
</p>
72+
<img
73+
src="/images/nike-af1-para-noise.png"
74+
class="img-m-width img-card"
75+
alt="air-force-one"
76+
/>
77+
</div>
78+
79+
<div class="card-footer">
80+
<h2>Follow my journey:</h2>
81+
<ul>
82+
<li>
83+
<a href="#"> <i class="social-icon fab fa-github"></i></a>
84+
</li>
85+
<li>
86+
<a href="#"> <i class="social-icon fab fa-linkedin-in"></i></a>
87+
</li>
88+
<li>
89+
<a href="#"> <i class="social-icon fab fa-instagram"></i></a>
90+
</li>
91+
</ul>
92+
</div>
93+
</div>
94+
</body>
95+
</html>

style.css

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
@import url('https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i&display=swap');
2+
3+
@media (max-width: 960px) {
4+
/* For a screen < 960px, this CSS will be read */
5+
.container {
6+
width: 700px;
7+
margin: 0 auto;
8+
background-color: #f7f7f7;
9+
}
10+
}
11+
@media (max-width: 720px) {
12+
/* For a screen < 720px, this CSS will be read */
13+
.container {
14+
width: 500px;
15+
margin: 0 auto;
16+
background-color: #f7f7f7;
17+
}
18+
}
19+
@media (max-width: 540px) {
20+
/* For a screen < 540px, this CSS will be read */
21+
.container {
22+
width: 300px;
23+
margin: 0 auto;
24+
background-color: #f7f7f7;
25+
}
26+
}
27+
28+
/* .container {
29+
width: 80%;
30+
margin: 0 auto;
31+
background-color: #f7f7f7;
32+
} */
33+
34+
body {
35+
text-align: center;
36+
background-color: #ffffff;
37+
font-family: Lora;
38+
color: cornflowerblue;
39+
line-height: normal;
40+
}
41+
42+
h2,
43+
h1 {
44+
font-family: Lora;
45+
}
46+
47+
p {
48+
font-size: 16px;
49+
}
50+
51+
ul {
52+
padding: 0;
53+
list-style-type: none;
54+
}
55+
56+
li {
57+
display: inline;
58+
padding: 8px auto;
59+
}
60+
61+
.button-color {
62+
font-size: larger;
63+
font-family: Lora;
64+
text-align: center;
65+
padding: 24px;
66+
background-color: rgb(107, 196, 248);
67+
color: cornflowerblue;
68+
border: 2px solid cornflowerblue;
69+
border-radius: 20px;
70+
}
71+
72+
.img-avatar {
73+
border-radius: 50%;
74+
}
75+
76+
a {
77+
color: rgb(118, 155, 223);
78+
text-decoration: none;
79+
}
80+
81+
a:hover {
82+
color: rgb(68, 103, 167);
83+
}
84+
85+
div {
86+
background-color: #f1f3f4;
87+
box-shadow: 10px 7px 20px -8px rgba(0, 0, 0, 0.24);
88+
padding: 16px;
89+
margin-left: 10%;
90+
margin-right: 10%;
91+
margin-top: 32px;
92+
margin-bottom: 32px;
93+
}
94+
95+
.cta-size {
96+
margin-top: 32px;
97+
font-size: 32px;
98+
}
99+
100+
.social-icon {
101+
padding-left: 16px;
102+
padding-right: 16px;
103+
font-size: 48px;
104+
}
105+
106+
.img-m-width {
107+
width: 55%;
108+
}
109+
110+
.img-card {
111+
padding: 16px;
112+
}
113+
114+
.link-color {
115+
color: cornflowerblue;
116+
}
117+
118+
.link-color:hover {
119+
color: rgb(181, 212, 212);
120+
}

0 commit comments

Comments
 (0)