-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
107 lines (93 loc) · 3.18 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<title>Synthetic Biology</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="css/index.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" rel="stylesheet" type="text/css" media="screen,projection">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/materialize.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div id="nav-icon">
<span class="green darken-4"></span>
<span class="green darken-4"></span>
<span class="green darken-4"></span>
<span class="green darken-4"></span>
<span class="green darken-4"></span>
<span class="green darken-4"></span>
</div>
<div id="mySidenav" class="sidenav z-depth-5 green accent-3">
<a href="index.html">Home</a>
<a href="crash.html">Learn Synth Biology</a>
<a href="biobrick.html">Learn BioBricks</a>
<a href="riboswitch.html">Learn Riboswitches</a>
</div>
<div class="text1 center row">
<div class="col s12 m6 offset-m3">
<h1 style="background-color:firebrick;color:white;border-radius:16px;height:75px;">Lazy Tomato Studios</h1>
<span style="font-size:30px;">brings to you,</span>
<p style="font-size:35px;">a simple E-learning module that covers the following topics.</p>
</div>
</div>
<div class="row" id="synth">
<div class="col s12 m8 offset-m2">
<a href="crash.html">
<div class="card green z-depth-5">
<div class="card-image">
<img src="res/synth.jpg">
</div>
<div class="card-content white-text">
<span class="card-title">Synthetic Biology</span>
</div>
</div>
</a>
</div>
</div>
<div class="row">
<div class="col s12 m8 offset-m2">
<a href="biobrick.html">
<div class="card green z-depth-5">
<div class="card-image">
<img src="res/brick.png" style="background-color: deepskyblue">
</div>
<div class="card-content white-text">
<span class="card-title">BioBricks Assembly</span>
</div>
</div>
</a>
</div>
</div>
<div class="row">
<div class="col s12 m8 offset-m2">
<a href="riboswitch.html">
<div class="card green z-depth-5">
<div class="card-image">
<img src="res/ribo.jpg">
</div>
<div class="card-content white-text">
<span class="card-title">Riboswitches</span>
</div>
</div></a>
</div>
</div>
<footer class="page-footer green darken-3">
<div class="container">
<div class="row">
<div class="col s12 m10 offset-m1">
<h2 class="white-text center">iGEM Inheritance Hackathon Project</h2>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
Lazy Tomato Studios 2017 ©
<a class="btn-floating btn-large waves-effect waves-light green" id="top" onclick="topFunction()"><i class="material-icons">vertical_align_top</i></a>
</div>
</div>
</footer>
</body>
</html>