-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (57 loc) · 2.6 KB
/
index.html
File metadata and controls
62 lines (57 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description"
content="Implement a step progress bar using this basic JavaScript application to visualize progress in multi-step tasks." />
<meta name="keywords"
content="step progress bar, JavaScript progress, task visualization, basic progress project, multi-step" />
<meta property="og:title" content="Step Progress Bar" />
<meta property="og:description"
content="Implement a step progress bar using this basic JavaScript application to visualize progress in multi-step tasks." />
<meta property="og:image" content="https://coderespite.com/image/js-projects/step-progress-bar.png" />
<meta property="og:url" content="https://coderespite.com/projects/js-projects/step-progress-bar" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Step Progress Bar" />
<meta name="twitter:description"
content="Implement a step progress bar using this basic JavaScript application to visualize progress in multi-step tasks." />
<meta name="twitter:image" content="https://coderespite.com/image/js-projects/step-progress-bar.png" />
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>step-progress-bar</title>
</head>
<body>
<div class="container">
<div class="progress-container">
<hr class="progress-bar-back">
<hr class="progress-bar-front">
<div class="step checked">
<i class="fas fa-check"></i>
<small>Start</small>
</div>
<div class="step">
<i class="fas fa-times"></i>
</div>
<div class="step">
<i class="fas fa-times"></i>
</div>
<div class="step">
<i class="fas fa-times"></i>
</div>
<div class="step">
<i class="fas fa-times"></i>
</div>
</div>
<button class="btn" id="prev" disabled>
<i class="fas fa-arrow-left"></i>
</button>
<button class="btn" id="next">
<i class="fas fa-arrow-right"></i>
</button>
</div>
<script src="script.js"></script>
</body>
</html>