-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
58 lines (52 loc) · 1.99 KB
/
contact.html
File metadata and controls
58 lines (52 loc) · 1.99 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
<!DOCTYPE hmtl>
<html>
<head>
<meta charset="utf-8">
<title>Leah Joyce | Self-Taught Developer</title>
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono|Rubik+Mono+One" rel="stylesheet">
<!-- <link rel="stylesheet" href="css/normalize.css">-->
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/responsive.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<header>
<div id="mainTitle">
<a href="index.html" id="logo">
<h1>Leah Joyce</h1>
<h2>Self-Taught Developer</h2></a>
</div>
<nav>
<ul>
<li><a href="index.html">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html" class="selected">Contact</a></li>
<li><a href="join.html">Join Now</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section id="primary">
<h3>General Information</h3>
<p>I am currently looking for Front-end Web Developer work.</p>
<p>Please only use phone contact for urgent inquires</p>
</section>
<section id="secondary">
<h3>Contact Details</h3>
<ul class="contact-info">
<li class="telephone"><a href="tel:2192819838">2192819838</a></li>
<li class="mail"><a href="mailto:leahjoyce89@hotmail.com">leahjoyce89@hotmail.com</a></li>
<li class="twitter"><a href="http://twitter.com/intent/tweet? screen_name=leahjoyce89">@leahjoyce89</a></li>
</ul>
</section>
</div>
<footer>
<a href="https://github.com/leahpjoyce"><img src="img/github_blue-48x48.png" alt="github Logo" class="social-icon"></a>
<a href="https://www.linkedin.com/in/leah-joyce-73597b123/"><img src="img/linkedin-48x48.png" alt="linkedin Logo" class="social-icon"></a>
<a href="https://twitter.com/leahjoyce89"><img src="img/twitter-48x48.png" alt="twitter Logo" class="social-icon"></a>
<p>© 2016 Leah Joyce.</p>
</footer>
<script src="app.js"></script>
</body>
</html>