forked from LaboratoriaChile/lyft-sprint-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (74 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Lyft - Laboratoria</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700&subset=latin-ext" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<section>
<nav class="navbar">
<ul>
<li><a href="#drive">Drive</a></li>
<li><a href="#explore">Explore</a></li>
<li><a href="#help">Help</a></li>
</ul>
<span class="navbar-brand"><img src="assets/img/logo-white.png" class="logo"></span>
</nav>
</section>
<!-- seccion header -->
<section class="inscripciones">
<img src="assets/img/cropped-Lyft-Promo-Codes-car-1.jpg" alt="img" class="foto" id="fotoauto">
<div class="contieneinfo">
<div class="box1" id="textbox1">
<h1>TURN MILES INTO MONEY</h1>
<h3>SIGN UP TO DRIVE LYFT</h3>
<div>
<input type="text" id="validNumber" class="phone" value="Phone Number">
<button class="btn">BECOME A DRIVER<i class="fa fa-heart" id="ico"></i></button>
<p>Already applied? Check the status of your application here.</p>
<p>Earn money for inviting friends to drive. Learn More.</p>
</div>
</div>
</div>
</section>
<!-- jueguito -->
<section class="play">
<div class="juego" id="autito">PLAY WITH LYFT</div>
<div class="cajon-juego">
<div class="coordenadas">
<div class="xizq"><i class="fa fa-automobile" aria-hidden="true" id="tocomocho"></i><input class="text" value="X Coordinate" id="coordx"></div>
<div class="yder"><i class="fa fa-automobile" aria-hidden="true" id="tocomocho"></i><input class="text" value="Y Coordinate" id="coordy"></div>
</div>
<div class="board">
<div class="botonsote">
<div class="btn-start">START</div>
</div>
<div id="tablero"></div>
<div class="tablero-pintado"></div>
</div>
</div>
</section>
<!-- footer -->
<section class="footer">
<div class="izq">
<h3>Sprint 3 - Project</h3>
<div class="laboratoria"></div>
<p>LABORATORIA</p>
<p>Código que Transforma</p>
</div>
<div class="der">
<p>Follow us!</p>
<div class="iconos">
<a href="https://www.lyft.com/"><span><i class="fa fa-automobile" aria-hidden="true"></i></span></a>
<a href="https://www.facebook.com/lyft"><span><i class="fa fa-facebook" aria-hidden="true"></i></span></a>
<a href="https://twitter.com/lyft"><span><i class="fa fa-twitter" aria-hidden="true"></i></span></a>
</div>
</div>
<div class="copyright"><i class="fa fa-copyright" aria-hidden="true"></i> Laboratoria 2017 + Lyft</div>
</section>
<script src="assets/js/main.js"></script>
</body>
</html>