Skip to content

Commit ac7bd14

Browse files
committed
create a html part of project
1 parent d0d4ec7 commit ac7bd14

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

ProgressSteps/index.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="style.css">
7+
<title>Progressing Steps</title>
8+
<header>
9+
<h1>Progressing Steps</h1>
10+
</header>
11+
</head>
12+
<body>
13+
<div class="container">
14+
<div class="progress-container">
15+
<div class="progress" id="progress"></div>
16+
<div class="circle active">1</div>
17+
<div class="circle">2</div>
18+
<div class="circle">3</div>
19+
<div class="circle">4</div>
20+
</div>
21+
<div>
22+
<button class="prev" id="prev" disabled>Prev</button>
23+
<button class="next" id="next">Next</button>
24+
</div>
25+
</div>
26+
<script src="script.js"></script>
27+
</body>
28+
</html>

0 commit comments

Comments
 (0)