-
Notifications
You must be signed in to change notification settings - Fork 102
/
ex3.html
62 lines (60 loc) · 2.49 KB
/
ex3.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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="ie ie6 lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="ie ie7 lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="ie ie8 lt-ie9" lang="en"> <![endif]-->
<!--[if IE 9]> <html class="ie ie9" lang="en"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en" class="no-ie">
<!--<![endif]-->
<head>
<title>Gophercises - Coding exercises for budding gophers</title>
</head>
<body>
<section class="header-section">
<div class="jumbo-content">
<div class="pull-right login-section">
Already have an account?
<a href="#" class="btn btn-login">Login <i class="fa fa-sign-in" aria-hidden="true"></i></a>
</div>
<center>
<img src="https://gophercises.com/img/gophercises_logo.png" style="max-width: 85%; z-index: 3;">
<h1>coding exercises for budding gophers</h1>
<br/>
<form action="/do-stuff" method="post">
<div class="input-group">
<input type="email" id="drip-email" name="fields[email]" class="btn-input" placeholder="Email Address" required>
<button class="btn btn-success btn-lg" type="submit">Sign me up!</button>
<a href="/lost">Lost? Need help?</a>
</div>
</form>
<p class="disclaimer disclaimer-box">Gophercises is 100% FREE, but is currently in beta. There will be bugs, and things will be changing significantly over the coming weeks.</p>
</center>
</div>
</section>
<section class="footer-section">
<div class="row">
<div class="col-md-6 col-md-offset-1 vcenter">
<div class="quote">
"Success is no accident. It is hard work, perseverance, learning, studying, sacrifice and most of all, love of what you are doing or learning to do." - Pele
</div>
</div>
<div class="col-md-4 col-md-offset-0 vcenter">
<center>
<img src="https://gophercises.com/img/gophercises_lifting.gif" style="width: 80%">
<br/>
<br/>
</center>
</div>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<center>
<p class="disclaimer">
Artwork created by Marcus Olsson (<a href="https://twitter.com/marcusolsson">@marcusolsson</a>), animated by Jon Calhoun (that's me!), and inspired by the original Go Gopher created by Renee French.
</p>
</center>
</div>
</div>
</section>
</body>
</html>