-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (69 loc) · 2.2 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
<html>
<head>
<title>Joppi Mario e Figli snc</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="css/general.css" type="text/css" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
<link rel="stylesheet" href="css/reset.css" type="text/css" />
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- -->
<!-- Script -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/modernizr.js"></script>
<script src="js/main.js"></script>
<!-- -->
</head>
<body>
<nav id="cd-vertical-nav" >
<ul>
<li>
<a href="#section1" data-number="1">
<span class="cd-dot"></span>
<span class="cd-label">Home</span>
</a>
</li>
<li>
<a href="#section2" data-number="2">
<span class="cd-dot"></span>
<span class="cd-label">Porfido</span>
</a>
</li>
<li>
<a href="#section3" data-number="3">
<span class="cd-dot"></span>
<span class="cd-label">Legname</span>
</a>
</li>
<li>
<a href="#section4" data-number="4">
<span class="cd-dot"></span>
<span class="cd-label">Contatti</span>
</a>
</li>
<!-- other navigation items here-->
</ul>
</nav>
<section id="section1" class="cd-section">
<!-- content here -->
<div class="title">Joppi Mario e Figli snc</div>
<br />
<div class="subtitle">Commercio Porfido / Legname</div>
<a href="#section2" class="cd-scroll-down cd-img-replace">Porfido</a>
</section>
<section id="section2" class="cd-section">
<!-- content here -->
<a href="#section3" class="cd-scroll-down cd-img-replace">Legname</a>
</section>
<section id="section3" class="cd-section">
<!-- content here -->
<a href="#section4" class="cd-scroll-down cd-img-replace">Contatti</a>
</section>
<section id="section4" class="cd-section">
<!-- content here -->
</section>
</body>
</html>