-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (52 loc) · 2.33 KB
/
index.html
File metadata and controls
62 lines (52 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wiki Style Website</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Side Navigation -->
<div class="side-nav">
<h4 class="text-center">Navigation</h4>
<nav class="nav flex-column">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="deliveryExample.html">Delivery Example</a>
</nav>
</div>
<!-- Main Content -->
<div class="main-content">
<h1>Main Title</h1>
<p>
Welcome to the wiki! This is an example of a Bootstrap-powered wiki page. You can add various kinds of content here, including images, text, and links. Here's an example paragraph with a <a href="#">link to another page</a>.
</p>
<h2 id="section1">Subsection 1</h2>
<p>
This is a subsection of the main content. You can add more information here, such as additional links, references, or images. Here's an image:
</p>
<img src="https://via.placeholder.com/300" class="img-fluid" alt="Example Image">
<h2 id="section2">Subsection 2</h2>
<p>
This is another subsection. You can continue adding more sections, each with their own titles and content.
</p>
<h3>Subsection 2.1</h3>
<p>More detailed content can go here, along with more links, images, or whatever you need to include in your wiki:</p>
<ul>
<li><a href="#">First related link</a></li>
<li><a href="#">Second related link</a></li>
<li><a href="#">Third related link</a></li>
</ul>
<!-- PDF Download Section -->
<h2>Downloadable Content</h2>
<p>
You can download the PDF version of the document here:
<a href="assets/esempioPDF.pdf" download>Download PDF</a>.
</p>
</div>
<!-- Bootstrap JS and dependencies -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>