-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<title>AI in Drug Discovery</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>AI in Drug Discovery</h1>
</header>
<nav>
<ul>
<li><a href="#projects">Projects</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="projects">
<h2>Projects</h2>
<div id="molecule-prediction">
<h3>Molecule Structure Prediction</h3>
<label for="mass">Mass:</label>
<input type="text" id="mass">
<label for="density">Density:</label>
<input type="text" id="density">
<label for="meltingPoint">Melting Point:</label>
<input type="text" id="meltingPoint">
<button onclick="predictMolecule()">Predict</button>
<p id="prediction-result"></p>
</div>
</section>
<section id="blog">
<h2>Blog</h2>
<p>Your latest articles or publications.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Ways to reach out to you.</p>
</section>
<script src="script.js"></script>
</body>
</html>