-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (112 loc) · 2.65 KB
/
index.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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<title>Miguel Martínez</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<style>
html {
font-family: 'Roboto', sans-serif;
background-color: #f9f9f9;
}
h1 {
font-size: 3rem;
text-align: center;
margin: 0;
padding: 30px 0;
color: #333;
text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
}
p, li {
font-size: 1rem;
line-height: 1.6;
letter-spacing: 0.5px;
color: #666;
}
body {
margin: 0;
padding: 0;
background-color: #e6e6e6;
border-top: 10px solid #00539F;
}
.wrapper {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
max-width: 90%;
margin: 50px auto;
padding: 40px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.left, .right {
background-color: #fff;
margin: 25px;
padding: 40px;
border-radius: 10px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.prof-pic {
border-radius: 50%;
width: 180px;
height: 180px;
display: block;
margin: 0 auto 40px;
border: 6px solid #00539F;
}
.socials {
list-style: none;
padding: 0;
margin: 30px 0;
}
.socials li {
display: inline-block;
margin-right: 25px;
}
.socials a {
text-decoration: none;
padding: 10px 20px;
background-color: #00539F;
color: #fff;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.socials a:hover {
background-color: #003366;
}
@media only screen and (min-width: 600px) {
html {
font-size: 18px;
}
.wrapper {
flex-direction: row;
}
.left, .right {
max-width: 50%;
}
}
</style>
</head>
<body>
<div class="wrapper">
<div class="left">
<img class="prof-pic" src="images/yo.jpeg" width="200" alt="Profile Picture"/>
<h1>Miguel Martinez</h1>
<h4>CS student</h4>
</div>
<div class="right">
<p>
Computer science student in A Coruña and part-time explorer.
Thanks for visiting, here you have some links to my socials and projects.
</p>
<ul class="socials">
<li><a href="https://github.com/miguimartinezzz">Github</a></li>
<li><a href="https://www.linkedin.com/in/miguel-martinezz/">LinkedIn</a></li>
</ul>
</div>
</div>
</body>
</html>