-
Notifications
You must be signed in to change notification settings - Fork 330
/
Copy pathpeanutcoder.html
76 lines (68 loc) · 2.58 KB
/
peanutcoder.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Peanutcoder</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="stylesheet" type="text/css" media="screen" href="main.css" /> -->
</head>
<style>
.main {
width: 400px;
margin: 0 auto;
padding-top: 50px;
}
.avatar {
width: 200px;
margin: 0 auto;
}
.avatar img {
max-width: 100%;
border-radius: 50%;
}
.info h1 {
text-align: center;
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: mediumslateblue;
border-bottom: 1px solid gainsboro;
font-weight: 400;
text-transform: uppercase;
font-size: 20px;
padding: 10px 0;
}
.social-accounts {
display: flex;
justify-content: space-around;
}
.social-accounts img {
width: 50px;
}
</style>
<body>
<div class="main">
<div class="avatar">
<img src="https://avatars0.githubusercontent.com/u/26343870?s=460&v=4" alt="peanutcoder">
</div>
<div class="info">
<h1>Khumar Musayeva</h1>
<div class="social-accounts">
<a href="https://twitter.com/peanutcoder">
<img src="https://image.flaticon.com/icons/svg/733/733579.svg" alt="">
</a>
<a href="https://github.com/peanutcoderr">
<img src="https://image.flaticon.com/icons/svg/25/25231.svg" alt=""></a>
<a href="https://codepen.io/peanutcoder">
<img src="https://image.flaticon.com/icons/svg/51/51767.svg" alt=""></a>
<a href="https://www.instagram.com/peanutcoder">
<img src="https://image.flaticon.com/icons/svg/733/733558.svg" alt="">
</a>
<a href="https://www.linkedin.com/in/khumar-musayeva-720969100">
<img src="https://image.flaticon.com/icons/svg/174/174857.svg" alt="">
</a>
</div>
</div>
</div>
<br /><br /><center><a id="back_to_home" href="home.html">Go back to home</a></center>
</body>
</html>