-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
61 lines (55 loc) · 1.61 KB
/
contacts.html
File metadata and controls
61 lines (55 loc) · 1.61 KB
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
<table style="height: 300px; width: 100%; background-color: #e6fbec;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="width: 300px;"><iframe style="border: 0;" src="https://emilysmithson.github.io/web/#/" width="400" height="400
"></iframe></td>
<td style="300px; background-color: #e6fbec;">
<h1 style="text-align: center;"> Emily Smithson</h1>
<h2 style="text-align: center;">Flutter Developer</h2>
</td>
</tr>
</tbody>
</table>
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {font-family: Arial, Helvetica, sans-serif;}
.navbar {
width: 100%;
background-color: #555;
overflow: auto;
}
.navbar a {
float: left;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background-color: #000;
}
.active {
background-color: #4CAF50;
}
@media screen and (max-width: 500px) {
.navbar a {
float: none;
display: block;
}
}
</style>
<body>
<div class="navbar">
<a href="https://emilysmithson.github.io/index.html"><i class="fa fa-fw fa-home"></i> Home</a>
<a href="https://emilysmithson.github.io/aboutme.html"><i class="fa fa-fw fa-user"></i>About me</a>
<a class="active" href="#"><i class="fa fa-fw fa-envelope"></i> Contact</a>
</div>
<h3>To get in touch, please email <a href="mailto:emily_foulkes@hotmail.com">emily_foulkes@hotmail.com</a>
<p>
View my LinkedIn profile <a href = "https://www.linkedin.com/in/emily-smithson-91a67b49"> here</a>
</h3>
</body>
</html>