-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
53 lines (45 loc) · 1.46 KB
/
contact.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
<!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">
<!-- Contacto -->
Pagina de contacto
<footer><p> © 2012 - Marcos Riganti </p></footer>
</section>
</body>
</html>