-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2_bootstrap.html
More file actions
82 lines (65 loc) · 3.5 KB
/
2_bootstrap.html
File metadata and controls
82 lines (65 loc) · 3.5 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Required for favicon -->
<link rel="icon" href="./assets/favicon.ico" sizes="any"><!-- 32×32 -->
<link rel="apple-touch-icon" sizes="180x180" href="./assets/apple-touch-icon.png">
<link rel="apple-touch-startup-image" href="./assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon-16x16.png">
<link rel="manifest" href="./assets/manifest.webmanifest">
<!-- bootstrap css-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<!-- bootstrap icons-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
</head>
<body class="text-center bg-white">
<!-- whole web container inside body-->
<div class="container w-100">
<!-- menu header section -->
<nav class="navbar navbar-expand-md pt-2">
<a href="" class="navbar-brand">
<img src="./assets/vr4content.512.transparent.bg.png" alt="vr4content icon" width="25" height="25"
class="mb-2">
<h5 class="text-dark d-inline-block px-2">Web AR experience</h5>
</a>
<!--collapsed button -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<i class="bi bi-list"></i>
</button>
<!--menu elements -->
<div class="collapse navbar-collapse small justify-content-end" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link nav-item text-black-50" href="#how_to">how to use?</a></li>
<li class="nav-item"><a class="nav-link nav-item text-black-50" href="#embed">embed code</a></li>
<li class="nav-item"><a class="nav-link nav-item text-black-50" href="#about">about this web</a>
</li>
<li class="nav-item"><a class="nav-link nav-item text-black-50" href="#contact">contact</a></li>
</ul>
</div>
</nav>
<!-- 3d model section -->
<div class="shadow bg-light">3dmodel section</div>
<!-- how to use section -->
<div id="how_to" class="shadow bg-light my-4">how to use section</div>
<!-- embed section -->
<div id="embed" class="shadow bg-light my-4">embed section</div>
<!-- about this web section -->
<div id="about" class="shadow bg-light">about section</div>
<!-- contact section -->
<div id="contact" class="shadow bg-light mt-3 px-3">contact section</div>
<!-- footer section -->
<footer class="text-black-50 mt-5">footer section</footer>
</div>
<!-- bootstrap requirement-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"></script>
</body>
</html>