-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (60 loc) · 1.95 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
<!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" class="selected">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="join.html">Join Now</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section class="skill">
<p>Skills focused on:</p>
<ul id="gallery">
<li>
<a href="img/html.png">
<img src="img/html.png" alt="html" height="200" width="200">
<p>HTML</p></a>
</li>
<li>
<a href="img/css.png">
<img src="img/css.png" alt="css" height="200" width="200">
<p>CSS</p></a>
</li>
<li>
<a href="img/js.png">
<img src="img/js.png" alt="js" height="200" width="200">
<p>JavaScript</p></a>
</li>
</ul>
<p>Projects to follow below:</p>
</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>