Skip to content

Commit 5dd7071

Browse files
authored
Add files via upload
0 parents  commit 5dd7071

File tree

6 files changed

+103
-0
lines changed

6 files changed

+103
-0
lines changed

Inter-Bold.ttf

309 KB
Binary file not shown.

Inter-Regular.ttf

303 KB
Binary file not shown.

Inter-SemiBold.ttf

309 KB
Binary file not shown.

avatar-jessica.jpeg

3.61 KB
Loading

favicon-32x32.png

1.04 KB
Loading

index.html

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title></title>
8+
<link rel="shortcut icon" href="favicon-32x32.png">
9+
<style type="text/css" media="all">
10+
@font-face{
11+
font-family:'Inter-Bold';
12+
src:url('Inter-Bold.ttf')
13+
}
14+
@font-face{
15+
font-family:'Inter-SemiBold';
16+
src:url('Inter-SemiBold.ttf');
17+
}
18+
@font-face{
19+
font-family:'Inter-Regular';
20+
src:url('Inter-Regular.ttf');
21+
}
22+
body{
23+
display:flex;
24+
justify-content:center;
25+
align-items:center;
26+
margin: 0;
27+
padding:0;
28+
background:#000000;
29+
}
30+
.container{
31+
display:flex;
32+
justify-content:center;
33+
align-items:center;
34+
height:100vh;
35+
}
36+
.card{
37+
background:#1f1f1f;
38+
display:grid;
39+
place-items: center;
40+
padding:10px;
41+
margin:10px;
42+
text-align:center;
43+
border-radius:5px;
44+
}
45+
h2{
46+
color:white;
47+
font-family:"Inter-SemiBold";
48+
margin-bottom:5px;
49+
}
50+
.location{
51+
color:#b1cf54;
52+
font-family:"Inter-Bold";
53+
margin-top:0;
54+
}
55+
p{
56+
color:#fff;
57+
font-family:"Inter-Regular";
58+
59+
}
60+
img{
61+
border-radius:50%;
62+
height:100px;
63+
width:100px;
64+
}
65+
.links a{
66+
display: block;
67+
padding:10px 100px;
68+
color:white;
69+
background:#333333;
70+
text-decoration:none;
71+
border-radius:10px;
72+
margin:10px;
73+
font-family:"Inter-SemiBold";
74+
transition:0.3s;
75+
}
76+
.links a:hover{
77+
background:#C4F82A;
78+
color:black;
79+
}
80+
</style>
81+
</head>
82+
<body>
83+
<div class="container">
84+
<div class="card">
85+
<div>
86+
<img src="avatar-jessica.jpeg" alt="avatar-jessica.jpeg">
87+
</div>
88+
<div>
89+
<h2>Jessica Randall</h2>
90+
<p class="location">London,United Kingdom</p>
91+
<p>"Front-end developer and avid reader."</p>
92+
</div>
93+
<div class="links">
94+
<a href="#">GitHub</a>
95+
<a href="#">Frontend Mentor</a>
96+
<a href="#">Linkedin</a>
97+
<a href="#">Twitter</a>
98+
<a href="#">Instagram</a>
99+
</div>
100+
</div>
101+
</div>
102+
</body>
103+
</html>

0 commit comments

Comments
 (0)