-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·136 lines (118 loc) · 4.21 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- Use the .htaccess and remove these lines to avoid edge case issues.
More info: h5bp.com/b/378 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Android mobile</title>
<meta name="description" content="description">
<meta name="author" content="rolf">
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory: mathiasbynens.be/notes/touch-icons -->
<!-- CSS: implied media="all" -->
<link rel="stylesheet" href="css/style.css?v=1">
<link rel="stylesheet" href="css/android.css?v=8"
media="only screen and (max-width: 800px)">
<link rel="stylesheet" href="css/desktop.css?v=1"
media="screen and (min-width: 801px)" />
<!-- More ideas for your <head> here: h5bp.com/docs/#head-Tips -->
<!-- All JavaScript at the bottom, except for Modernizr and Respond.
Modernizr enables HTML5 elements & feature detects; Respond is a polyfill for min/max-width CSS3 Media Queries
For optimal performance, use a custom Modernizr build: www.modernizr.com/download/ -->
<script src="js/libs/modernizr-2.0.6.min.js"></script>
<script src="js/libs/respond.min.js"></script>
</head>
<body>
<div id="container">
<header>
<div id="header">
<h1>
<a href="./">Rolf Strijdhorst</a>
</h1>
<div id="utility">
<ul>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Blog</a></li>
</ul>
</div>
<nav>
<div id="nav">
<ul>
<li><a href="">Consulting Clinic</a>
</li>
<li><a href="">On Call</a>
</li>
<li><a href="">Development</a>
</li>
<li><a href="">O'Reilly media, inc</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<div id="content" role="main">
<article>
<h2>About</h2>
<p>Rolf Strijdhorst is a webdeveloper who currently works for
Prismait to get familiar with the flex programming model and the
Android Development environment. He has worked for companies like
the Nederlandse bank, T-systems and the Dutch ministry of Justice.</p>
</article>
<article>
<h2></h2>
<p></p>
</article>
<aside>
<div id="sidebar">
<img src="images/jonathanstark-manga-small.png" alt="" />
<p>Rolf Strijdhorst is a mobile and web application developer
who works with java and python and is noted on the jetty wiki for
his contribution on debugging in maven.</p>
</div>
</aside>
</div>
<footer>
<div id="footer">
<ul>
<li><a href="services.html">Services</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
<p class="subtle">Jonathan Stark Consulting, Inc.</p>
</div>
</footer>
</div>
<!--! end of #container -->
<!-- JavaScript at the bottom for fast page loading -->
<!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
<script
src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>
window.jQuery
|| document
.write('<script src="js/libs/jquery-1.6.2.min.js"><\/script>')
</script>
<!-- scripts concatenated and minified via ant build script-->
<script src="js/plugins.js"></script>
<script src="js/script.js"></script>
<script src="js/android.js" type="text/javascript"></script>
<!-- end scripts-->
<!-- Prompt IE 6 users to install Chrome Frame. Remove this if you want to support IE 6.
chromium.org/developers/how-tos/chrome-frame-getting-started -->
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
</body>
</html>