-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (65 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<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=Rajdhani:wght@500&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="styles.css" />
<script src="app.js" defer></script>
<title>Image Viewer</title>
</head>
<body>
<div class="square-container">
<div class="square">
<button class="btn" id="close">
<i class="fas fa-times"></i>
</button>
<button class="btn" id="open">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
<main>
<div class="container show-nav">
<div class="main-content">
<img
class="active"
src="img/1584-dog__golden_retriever_dog_puppy_wallpaper.jpg"
alt="A Dog"
/>
<img
src="img/GoldenPuppy185743593-56a9c1f23df78cf772aa4a33.jpg"
alt=""
/>
<img src="img/81.jpg" alt=""/>
<div class="progress-steps-container">
<div class="progress-line" id="progress-line"></div>
<div class="circle active">1</div>
<div class="circle">2</div>
<div class="circle">3</div>
</div>
<button id="prev">Prev</button>
<button id="next">Next</button>
</div>
</div>
</main>
<nav>
<ul class="nav-ul">
<li><i class="fas fa-home">Home</i></li>
<li><i class="fas fa-user-alt">About</i></li>
<li><i class="fas fa-envelope">Contact</i></li>
</ul>
</nav>
</body>
</html>