-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 2.38 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&family=Inter:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="icon" type="image/x-icon" href="./assets/img/ranger-logo.svg">
<title>Rangers on Wheels Form</title>
</head>
<body class="body">
<main class="main space__main w--max">
<picture class="logo__wrapper img__wrapper margin__bottom--25">
<img class="logo__img" src="./assets/img/ranger-logo.svg" alt="rangers on Wheels logo">
</picture>
<p class="tag tag-steps tag__tx tx--uppercase">Paso 1 de 2</p>
<h1 class="tx__title title--primary tx--uppercase tx__color--light margin__top--15">¡Vamos, empezamos!</h1>
<p class="tx__info tx__description tx--code tx__color--light margin__top--25">Has llegado hasta el test de rangers on Wheels. Responde las siguientes preguntas y genera tu código premiado a medida.</p>
<form class="quiz space__container margin__top--25">
<div class="quiz__wrapper"></div>
<input type="button" class="btn quiz__btn tx--alt tx--sans tx__color--light w--100" value="Siguiente">
</form>
</main>
<picture class="bg__wrapper">
<img class="bg__img w--100 h--100" src="./assets/img/bike-bg.jpg" alt="This is the background image of the page">
</picture>
<footer class="footer space__main w--100">
<div class="footer__wrapper w--max">
<p class="footer__tx tx--alt tx--code tx__color--light">2012-2023 rangers on Wheels S.L.</p>
<p class="footer__tx tx--alt tx--code tx__color--light">Todos los derechos reservados. <a class="link tx__color--light" href="#">Ver bases.</a></p>
</div>
</footer>
<script src="./js/getQuiz.js"></script>
<script src="./js/addQuiz.js"></script>
<script src="./js/couponGenerator.js"></script>
<script src="./js/timer.js"></script>
<script src="./js/copy.js"></script>
</body>
</html>