-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
106 lines (98 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel = "icon" href = "favicon.ico">
<link type = "text/css" rel = "stylesheet" href = "https://cdn.jsdelivr.net/gh/HunterBall/Fresh@1.1.1/fresh.min.css">
<style>
.hero{
background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('rice.jpg');
}
.card{
float: center;
padding: 20px;
margins: 0px 50px 0px 50px;
}
</style>
</head>
<body>
<div class = "main">
<div class = "nav sticky">
<img class = "icon" src = "logo.png"/>
<a class = "title" href = "#"> PROJECT GRFT </a>
<a class = "item" href = "#projectDescription"> Who We Are </a>
<a class = "item" href = "#memberList"> Our Members </a>
</div>
<div class = "hero primary">
<center>
<h1> Project GRFT </h1>
<!-- We need an actual thing -->
<h3> Make rice cool </h3>
</center>
</div>
</div>
<div class = 'main'>
<div class = 'container'>
<center>
<div class = 'header' id = 'projectDescription'>
<h4> WHO WE ARE </h4>
</div>
<p>
<!-- This overview should probably be less technical to appeal to a more general audience. -->
We have evidence of a powerful anti-viral biologic (griffithsin, also known as GRFT) that has been shown to be effective against coronaviruses and other enveloped viruses in animal models.
We are forming a team to license it, biomanufacture it and deploy it globally via expression within genetically engineered rice.
Our work is multidisciplinary, including genetics, plant cell culture, hardware development, and law.
</p>
<!--
<img src = 'https://upload.wikimedia.org/wikipedia/commons/8/80/3ll2.png' alt = 'Griffithsin in complex with a high-mannose branched carbohydrate.'>
(From Wikipedia; requires attribution)
-->
</center>
</div>
<div class = 'container'>
<center>
<div class = 'header'>
<h4> OUR PURPOSE </h4>
</div>
<p>
We aim to provide a material means to protect all people worldwide from coronaviruses, other enveloped viruses that are inhibited by GRFT and from emerging viruses.
</p>
</center>
</div>
<!--Our members-->
<div class = 'main'>
<center>
<h4 id = 'memberList'> Meet Our Members </h4>
<ul style="list-style-type:none;">
<li> Sreeni Eadara </li>
<li> Other People </li>
</ul>
</center>
<!--<div class = 'main'>
<div class = 'column' style = 'float: left; width: 33.3%; margin-bottom: 16px; padding: 0 8px;'>
<div class = 'card'>
<div class='header'>
<h5> Sreeni Eadara </h5>
</div>
<div class = 'content'>
<p> Actually knows wtf is going on </p>
</div>
</div>
<div class = 'column' style = 'float: left; width: 33.3%; margin-bottom: 16px; padding: 0 8px;'>
<div class = 'card'>
<div class='header'>
<h5> Other people </h5>
</div>
<div class = 'content'>
<p> We also exist </p>
</div>
</div>
</div>
</div>
</div>-->
</div>
</div>
<br>
<br>
<script src = "https://cdn.jsdelivr.net/gh/HunterBall/Fresh@1.1.1/fresh.min.js"></script>
</body>
</html>