-
Notifications
You must be signed in to change notification settings - Fork 0
/
2D_DL_SIM.html
97 lines (70 loc) · 2.08 KB
/
2D_DL_SIM.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<html>
<head>
<title>CIRL Memphis</title>
</head>
<!------------------------- Navigation Bar Style ---------------------->
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: grey;
color: white;
.titleBlk {
border: 5px outset red;
background-color: lightblue;
text-align: center;
}
</style>
<!------------------------- Title Block Style --------------------->
<style>
.titleBlk {
background-image: url("https://sim.hms.harvard.edu/wp-content/uploads/2014/11/prophase.jpg");
text-align: center;
}
</style>
<!------------------------- Title Block --------------------------->
<div class="titleBlk">
<br>
<h2><p style="color:white;"> Advanced Research in High-Resolution Light Microscopy Imaging <p></h2>
<h4><p style="color:white;">University of Memphis</p></h4><br>
</div>
<!------------------------- Navigation Bar ------------------------->
<div class="topnav">
<a class="active" href="index.html">Home</a>
<a href="Resources.html">Resources</a>
<a href="Online_Tools.html">Online Tools</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
<!------------------------------ Body ----------------------------->
<body style="background-color:whitesmoke;">
<h2 style="text-align:center;">2D DL-SIM Super-Resolution </h2>
<form action="upload.php" method="post" enctype="multipart/form-data">
<center>
Upload TIFF image to be reconstructed: <br><br>
<input type="file" name="fileToUpload" id="fileToUpload"> <br><br>
<input type="submit" value="Run" name="submit"></center>
</form>
<!------------------------------ End ----------------------------->
<br><br><br><br><br><br>
<p style="text-align:center;"> © 2022</p>
</body>
</html>