-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusv.html
More file actions
57 lines (46 loc) · 1.32 KB
/
usv.html
File metadata and controls
57 lines (46 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<style>
.div1 {
background-color: #a9a9a9;
margin: 10px;
}
.div2 {
background-color: #0200cd;
background-clip: content-box;
text-align: center;
}
</style>
<body>
<!--------HEADER----->
<div class="header">
<img src="/img/LogoBlanco.png" alt="LogoBlanco" height="70">
</div>
<!--------MENU------->
<ul class="nav nav-pills nav-fill">
<li class="nav-item">
<a class="nav-link" href="/index.html">DASHBOARD</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page"href="/usv.html">USV</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/uuv.html">UUV</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/ugv.html">UGV</a>
</li>
</ul>
<!----------SECTION1---------->
<!------FOOTER----------->
<footer id="sticky-footer" class="flex-shrink-0 py-4 bg-dark text-white-50">
<div class="container text-center">
<small>Copyright © Vanttec 2022</small>
</div>
</footer>
</body>
</html>