-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeliveryExample.html
More file actions
48 lines (41 loc) · 1.67 KB
/
deliveryExample.html
File metadata and controls
48 lines (41 loc) · 1.67 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
<!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>Delivery example page</h1>
<p>
Here you should write an abstract of your delivery or any info you think it is important.
</p>
<h2>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">
<!-- PDF Download Section -->
<h2>Downloadable Content</h2>
<p>
You can download an example of PDF version of your delivery 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>