-
Notifications
You must be signed in to change notification settings - Fork 0
/
askme.html
69 lines (56 loc) · 1.99 KB
/
askme.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
<!DOCTYPE HTML>
<!-- -->
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>My CV</title>
<style type="text/css">
body{
padding-top: 60px;
}
</style>
<link rel="stylesheet" href="css/bootstrap.css">
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script defer src="http://balupton.github.com/history.js/scripts/bundled/html4+html5/jquery.history.js"></script>
<script defer type="text/javascript" src="js/bootstrap.js"></script>
</head>
<body>
<!-- Mark the navigation with NAV TAG-->
<nav class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">My CV</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="index.html">About Me</a></li>
<li><a href="media.html">Media</a></li>
<li><a href="askme.html">Ask Me</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</nav>
<section class="container-fluid">
<h1>Askme</h1>
<article>
<header>
<h2>What's ur name?</h2>
</header>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</article>
<footer><p> © 2012 - Marcos Riganti </p></footer>
</section>
</body>
</html>