-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
25 lines (25 loc) · 1.11 KB
/
map.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Orgo Synthesis Solver | Map</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body>
<h1 style="margin-top: 3vh;">Map</h1>
<div id="nav-bar">
<ul>
<li><a href="index.html">Solver</a></li>
<li><a href="about.html">About</a></li>
<li><a href="map.html">Map</a></li>
</ul>
</div>
<div class="map" style="text-align:center;">
<p>Zoom in and out to interact with the reaction map. Hover over a node to see its predecessor(s)! This may be helpful for retrosynthetic synthesis. You can also click on an edge to see the reagent needed to get from A --> B, where A is the source node (reactant) and B is the target node (product).</p>
<iframe src="https://orgo-synth-solver.herokuapp.com/" width=1000 height=600></iframe>
</div>
</body>
</html>