-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (125 loc) · 3.89 KB
/
index.html
File metadata and controls
136 lines (125 loc) · 3.89 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - landingpage</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Product landing page</title>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</head>
<body>
<header id="header">
<img id="header-img"
src="https://i.postimg.cc/9XBp4Q0H/double-helix-v2.png"
alt="company logo"/>
<nav id="nav-bar">
<ul>
<li><a class="nav-link" href=#home>Home</a></li>
<li><a class="nav-link" href=#features>Features</a></li>
<li><a class="nav-link" href=#explanation>How it works</a></li>
<li><a class="nav-link" href=#services>Services</a></li>
</ul>
</nav>
</header>
<section id="home">
<h1>Nanopore Tech</h1>
<h3>The next generation of sequencing technologies</h3>
<form id="form"
action="https://www.freecodecamp.com/email-submit">
<p>
Sign up now to receive information about our newest services:
</p>
<input id="email"
type="email"
name="email"
placeholder="Enter your email address"
required />
<input id="submit"
type="submit"
value="Submit e-mail"
class="btn"/>
</form>
</section>
<section id="features">
<h2>Advantages over other technologies</h2>
<div class="feat">
<img class="bullet-point"
src="http://www.clipartbest.com/cliparts/yck/6rk/yck6rk8di.png"
alt=">>"/>
<p>
Fast - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</div>
<div class="feat">
<img class="bullet-point"
src="http://www.clipartbest.com/cliparts/yck/6rk/yck6rk8di.png"
alt=">>"/>
<p>
Precise - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</div>
<div class="feat">
<img class="bullet-point"
src="http://www.clipartbest.com/cliparts/yck/6rk/yck6rk8di.png"
alt=">>"/>
<p>
Cheap - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</div>
</section>
<section id="explanation">
<h2>How does nanopore sequencing work?</h2>
<iframe id="video"
src="https://www.youtube-nocookie.com/embed/E9-Rm5AoZGw?rel=0&controls=0&showinfo=0"
allow="fullscreen">
</iframe>
<p>
You can also read a more in-deph explanation of how nanopore technology works in this <a href="https://ceesdekkerlab.nl/wp-content/uploads/Nature.pdf" target="_blank" rel="external"><u>Nature article</u></a>.
</p>
</section>
<section id="services">
<h2>Our services:</h2>
<div id="services-list">
<a class="srv" href=#>
<ul>
<li>Short sequence (>1kb)</li>
<li>£10 per result</li>
</ul>
</a>
<a class="srv" href=#>
<ul>
<li>Medium-sized sequence</li>
<li>£100 per result</li>
</ul>
</a>
<a class="srv" href=#>
<ul>
<li>Long sequence (<1000kb)</li>
<li>£1000 per result</li>
</ul>
</a>
</div>
</section>
<footer id="footer">
<nav id="footer-nav-bar">
<ul>
<li><a class="nav-link" href=#>Privacy</a></li>
<li><a class="nav-link" href=#>Terms of service</a></li>
<li><a class="nav-link" href=#>Contact</a></li>
</ul>
</nav>
<p id="copyright">
Copyright 2020, Nanopote tech
</p>
</footer>
</body>
</html>
<!-- partial -->
</body>
</html>