-
Notifications
You must be signed in to change notification settings - Fork 6
/
Introduzione.html
43 lines (35 loc) · 1.21 KB
/
Introduzione.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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>SWEky - La wiki di SWE</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js'></script>
<script src="js/index.js"></script>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="./img/favicon.png">
<script>
$(function () {
$( "#wrapper" ).load( 'commonBody.html', function() {
$( "#int" ).attr("href", "#");
getContento();
});
});
function getContento() {
$( "#contento" ).load( './src/cIntroduzione.html');
$.getScript( "js/index.js");
$("[data-toggle=popover]").popover();
}
</script>
<style>
#int{ background-color:#004D40; font-weight: bold; }
</style>
</head>
<body>
<div id="wrapper">
</div>
</body>
</html>