-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travelopia - Home Test</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,[email protected],400;6..12,600;6..12,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="dist/css/style.css" />
</head>
<body>
<header class="site-header"></header>
<main class="site-content">
<section class="full-width__image--background">
<div class="image-wrapper">
<picture>
<source media="(min-width:1600px)" srcset="images/cy-1920.jpg">
<source media="(min-width:576px)" srcset="images/cy-1440.jpg">
<source media="(max-width:575.98px)" srcset="images/cy-540.jpg">
<img src="images/cy-1920.jpg" alt="Chandrayan">
</picture>
</div>
<div class="content-wrapper">
<h1 class="content-title">'India, I reached my destination and you too!': Chandrayaan-3</h1>
<button type="button" class="content-cta">Click Here</button>
</div>
</section>
</main>
<footer class="site-footer"></footer>
</body>
<script src="dist/js/all.js" async></script>
</html>