This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (72 loc) · 2.33 KB
/
index.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
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Liu Group AIDAM Database</title>
<link rel="icon" type="image/png" href="./Images/C60_logo_circle.png">
<link rel="stylesheet" href="dist/output.css">
<script type="module" src="main_page.js" ></script>
</head>
<body class="body">
<!--Header and Navigation-->
<header class="siteheader">
<div>
<span class="siteheader logo">
<a href="index.html"><img src="Images/header_logo.png" alt="Liu Group Logo"></a>
</span>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="search.html">SEARCH</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="news.html">NEWS</a></li>
<li><a href="contact page/contact.html">CONTACT</a></li>
</ul>
</div>
<br>
</header>
<main>
<div class="toplayout">
<div class="topleft">
<img src="Images/graph_graphic.png" alt="Graphs representing data">
<!--"Search Database" button-->
</div>
<div class="topright">
<h2>Liu Group AIDAM Database</h2>
<p>The Liu Group from the University of Florida has created a database
to provide information about materials, their properties, and their
connections with other materials.
</p>
</div>
</div>
<h1 class="">More Information</h1>
<p>
<a href="molecule_view.html">Sample 3Dmol page</a>
<br>
<!--<a href="jmol-16.1.11\jsmol\jsmol.htm">Test JSmol</a>-->
</p>
<!--<p>paragraph with more info...</p>-->
<!-- Content sections -->
<div >
<table>
<tr>
<td>
<div id="plot1" style="width: 30%;"></div>
</td>
<td>
<div id="plot2" style="width: 50%;"></div>
</td>
</tr>
</table>
</div>
<div id="plot3"></div>
</main>
<footer class="sitefooter">
<p>
Created by Liu Research Group at University of Florida
<hr>
<a href="https://liu.chem.ufl.edu/research/">Learn more about our research</a>
</p>
</footer>
</body>
</html>