-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (72 loc) · 2.47 KB
/
index.html
File metadata and controls
78 lines (72 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="esto es " />
<title>doNow</title>
<link rel="shortcut icon" href="./images/favicon.ico" />
<!-- Bootstrap core CSS -->
<!-- <link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.css" /> -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<!-- Custom styles -->
<link href="./css/main.css" rel="stylesheet" />
</head>
<body class="h-100 text-white bg-dark">
<!-- Navbar -->
<header class="d-flex p-3 mx-auto sticky-top row bg-dark">
<section class="col-sm align-self-center justify-text-center">
<h2 class="d-flex justify-content-center mb-0">
<a id="logo" class="text-decoration-none text-light" href="./index.html"
>doNow</a
>
</h2>
</section>
<section class="col-sm align-self-center justify-text-center">
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link fw-bold py-1 px-0 disabled active" href="./index.html"
>Home</a
>
<a
class="nav-link fw-bold py-1 px-0"
aria-current="page"
href="./pages/converter.html"
>Converter</a
>
</nav>
</section>
</header>
<main class="d-flex">
<section
class="d-flex container flex-column full-view justify-content-center p-5 col-xl-6 col-lg-5"
>
<h1 class="d-flex align-self-center mb-lg-3 mb-1">doNow.</h1>
<p class="lead">
It is an online currency converter, this app takes the latest price of a
currency and converts it to the currency of your choice.
</p>
<p class="lead">It is totally free and without advertising of any kind.</p>
<p class="lead align-self-center mt-lg-5 mt-2">
<a id="start" href="./pages/converter.html" class="btn btn-outline-light"
>Let's start!</a
>
</p>
</section>
</main>
<!-- Footer bar -->
<footer class="container d-flex justify-content-center">
<p>
By
<a href="https://github.com/ezEst6" class="text-white text-decoration-none"
>@EzEst</a
>.
</p>
</footer>
<!-- Bootstrap -->
<!-- <script src="./node_modules/bootstrap/dist/js/bootstrap.bundle.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>