-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfaq.html
More file actions
108 lines (92 loc) · 4.16 KB
/
faq.html
File metadata and controls
108 lines (92 loc) · 4.16 KB
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
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>FAQ</title>
<!-- begin favicon block -->
<link rel="apple-touch-icon" sizes="57x57" href="assets/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="assets/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- end favicon block -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<link rel="stylesheet" href="style/bootstrap.css" />
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="node_modules/d3/dist/d3.min.js"></script>
<link rel="stylesheet/less" type="text/css" href="style/index.less">
<script type="text/javascript" src="node_modules/less/dist/less.min.js" data-log-level="1"></script>
<script src="https://kit.fontawesome.com/f2d2b39d62.js" crossorigin="anonymous" SameSite="none Secure"></script>
<script type="module" src="controllers/VanillaController.js"></script>
<style>
body, html {
height: 100%;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.hero-image {
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("/assets/geno_pheno.png");
height: 40%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: yellow;
}
.hero-text button {
border: none;
outline: 0;
display: inline-block;
padding: 10px 25px;
color: black;
background-color: #ddd;
text-align: center;
cursor: pointer;
}
.hero-text button:hover {
background-color: #555;
color: white;
}
</style>
</head>
<body>
<header></header>
<div class="hero-image">
<main role="main">
<div class="hero-text">
<h1 style="font-size:50px">Frequently Asked Questions</h1>
</div>
</div>
<div class="container">
<h2>What is a phenotype? </h2>
<p>A <strong>phenotype</strong> is an observable characteristic or trait of an organism, like the color of a flower or the shape of an ear.</p>
<h2>What is a genotype?</h2>
<p>A <strong>genotype</strong> is a specific variation of a gene that encodes a phenotype, such a gene that encodes eye color or height. Genes are found on chromosomes and encoded in patterns on the DNA molecule. That DNA pattern is copied and used to make proteins by a suite of RNA molecules in the cell. In this way, changes in the DNA pattern that make up our specific genotype affect the proteins that cells make and result in an observable phenotype, like blue eyes or short stature.</p>
<h2>What is a cyberinfrastructure?</h2>
<p>A <strong>cyberinfrastructure</strong> is a combination of software platforms, tools, and datasets; storage and compute hardware; and people who provide training and support
</p>
</div>
</main>
<footer></footer>
</body>
</html>