-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
92 lines (76 loc) · 2.14 KB
/
contact.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
<!doctype html>
<html>
<head>
<title>Alex Cabral - Contact</title>
<link rel = "stylesheet" href="https://fonts.googleapis.com/css?family=Playfair+Display|Lato:300,400,700|Source+Sans+Pro:light">
<!-- fonts to play with:
Playfair Display + Lato or Source Sans Pro
Roboto + Montserrat
Google Sans (/helvetica neue) + Roboto (/helvetica neue) = default google look
check other recs on the google fonts site under these fonts
Format: family=Font+Name1|Font+Name2:weight1,weight2|Font+Name3:weight1
-->
<style>
h1 {
font-family: 'Playfair Display', serif;
font-size: 48px;
}
body {
font-family: 'Lato', sans-serif;
font-size: 18px;
font-weight: 300;
margin: 0% 0% 0% 0%
}
.intro {
margin: 0% 10% 0% 10%
}
nav {
font-family: 'Lato', sans-serif;
font-weight: 400;
text-transform: uppercase;
/*color: #000000;*/
}
a {
text-decoration: none;
color: #0576C7;
/*535353; 00a0db; 0576C7; 059fd8 */
}
a:hover {
text-decoration: underline;
color: #045187;
/*05c796; 06c730; 04bcde; 045187*/
}
ul {
list-style-type: none;
padding: 5% 0% 1% 0%
}
li {
display: inline;
padding: 0% 4% 0% 4%;
/* top, right, bottom, left */
}
</style>
</head>
<body>
<nav>
<center>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="AlexCabral_Resume.pdf">Résumé</a></li>
<li><a href="https://www.linkedin.com/in/alex-cabral-720b73135/">LinkedIn</a></li>
</ul>
</center>
</nav>
<div class="intro">
<center>
<h1>Contact</h1>
<p>You can email me at arcabral37 at gmail dot com.</p>
<p>Alternatively, feel free to reach out through my <a href = "https://www.linkedin.com/in/alex-cabral-720b73135/">LinkedIn</a>.</p>
</center>
</div>
<div>
</div>
</body>
</html>