-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeltapub.html
65 lines (51 loc) · 1.67 KB
/
deltapub.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>3D Object</title>
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<link rel="stylesheet" href="css/deltapubstyle.css">
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
<script nomodule src="https://unpkg.com/@google/model-viewer/dist/model-viewer-legacy.js"></script>
</head>
<body>
<div id="container">
<!-- Menu -->
<div id="navbar">
<ul>
<li class="active">
<a href="/index.html">Home</a>
</li>
<li><a href="/deltapub.html">Delta Variant</a></li>
<li><a href="/gammapub.html">Gamma Variant</a></li>
</ul>
</div>
<!--3d object-->
<div id="variant">
<model-viewer src="covid19orighome.gltf" alt="Covid-19 Original Variant" auto-rotate camera-controls ar ios-src="covid19orighome.gltf">
</model-viewer>
</div>
<!--text description-->
<div id="content">
<h2>Delta</h2>
<p> brief description </p>
<a href="#block1text"><button>Learn More</button></a>
</div>
<div class="center">
<div id="block1text">
<p> brief description </p>
</div>
</div>
<div class="center">
<div id="block2" >
<img src="c19.jpg">
</div>
</div>
<div class="center">
<div id="block3text">
<p> brief description </p>
</div>
</div>
</div>
</body>
</html>