-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (59 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Deborah Engelmeyer">
<meta name ="viewport" content ="width=device-width, initial-scale = 1" />
<link href='https://fonts.googleapis.com/css?family=Lora:400,400italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styles/format.css">
<link rel="stylesheet" type="text/css" href="styles/layout.css">
<script type="text/javascript" src="scripts/date.js"></script>
<script src='http://code.jquery.com/jquery-2.2.0.min.js'></script>
<script src='scripts/jquery.keyframes.min.js'></script>
<style>
#content img {
float: right;
border-radius: 10em;
}
</style>
<title>The Inquisitive Introvert Homepage</title>
</head>
<body onLoad="document.getElementById('date').innerHTML=document.lastModified;">
<header>
<section>
<h1>The Inquisitive Introvert</h1>
</section>
</header>
<nav>
<h2>Navigation</h2>
<ul>
<li><a id="current" href="index.html">Home</a></li>
<li><a href="apps/index.html">Mobile Apps</a>
</li>
<li><a href="knitting/index.html">Knitting</a>
</li>
<li><a href="documentation/portfolio-design.html">Documentation</a>
</li>
</ul>
</nav>
<section id="content">
<h2>About the Inquisitive Introvert</h2>
<p>I am Deborah Engelmeyer, the Inquisitive Introvert. I am a software engineer dabbling in mobile applications, and an avid knitter
providing my expertise and designs.</p>
<p>This site presents a cross-section of my work, including the mobile apps I am working on, and some of the knitted projects
I am working on and have finished.</p>
</section>
<footer>
<div>
<p>Copyright © The Inquisitive Introvert 2017</p>
<p>Last modified: <span id="date"></span></p>
</div>
<div id="contact">
<p>email: <a href="mailto:[email protected]">[email protected]</a></p>
<a id="github" href="https://github.com/deb761"><img src="images/GitHub-Mark-32px.png" alt="Github"/></a>
<a id="facebook" href="https://www.facebook.com/debbie.engelmeyer"><img src="images/FB-f-Logo__blue_29.png" alt="Facebook"/></a>
<a id="linkedin" href="https://www.linkedin.com/in/deborahengelmeyer"><img src="images/In-2C-28px-TM.png" alt="LinkedIn"/></a>
</div>
</footer>
</body>
</html>