-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathempty.html
More file actions
76 lines (71 loc) · 2.86 KB
/
empty.html
File metadata and controls
76 lines (71 loc) · 2.86 KB
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
<!doctype html>
<html lang="it">
<head>
<meta charset="utf-8">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Titolo, descrizione, autore -->
<title>Regione Veneto</title>
<meta name="description" content="Informazioni sulla nostra regione Veneto">
<meta name="author" content="Studenti del corso di Web Design">
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script>
$(function () {
$("body").prepend('<nav id="NavBar" />');
$("#NavBar").load('navbar.html');
});
</script>
<!-- CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/stileSite.css" rel="stylesheet">
<link href="css/media_query.css" rel="stylesheet">
<link href="css/media_print.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<!-- breadcrumbs -->
<div class="container">
<ol class="breadcrumb">
<li><a href="index.html">Home</a></li>
<!-- la pagina in qui ci troviamo -->
<li class="active">pagina_1</li>
</ol>
</div> <!-- ./breadcrumbs -->
<!-- Corpo della pagina -->
<div class="container">
<!-- Header della pagina -->
<div class="page-header">
<h1>
Titolo pagina
</h1>
</div>
</div> <!-- /container>
<!-- Footer -->
<footer class="my_footer">
<!-- Inseriamo una riga -->
<hr class="featurette-divider">
<div class="container">
<span>
<strong> Seguici su: </strong>
<a href="http://www.facebook.com"><span class="fa fa-facebook"><span>facebook</span></span></a>
<a href="http://www.twitter.com"><span class="fa fa-twitter"><span>twitter</span></span></a>
</span>
<span class="pull-right">
TL-team 2014 - <a href="sitemap.html"> Indice dei contenuti </a>
<a href="mailto:admin@domain.it"> Contattaci </a>
</span>
</div>
<br>
</footer>
<!-- Script -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../js/bootstrap.js"></script>
<!-- css3-mediaqueries.js for IE less than 9 -->
<!--[if lt IE 9]>
<script
src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js">
</script>
<![endif]-->
</body>
</html>