Skip to content

Commit d0d8335

Browse files
authored
Update index.html
re-wirte the index.html and adding the style.css file
1 parent af7f700 commit d0d8335

File tree

1 file changed

+20
-16
lines changed

1 file changed

+20
-16
lines changed

index.html

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
<!DOCTYPE html>
22
<html>
3-
<head>
4-
</head>
5-
<body>
6-
<ul>
7-
<li>
8-
<a href="en/00-01.html">English</a>
9-
</li>
10-
<li>
11-
<a href="de/00-01.html">Deutsch</a>
12-
</li>
13-
<li>
14-
<a href="sv/00-01.html">Svenska</a>
15-
</li>
16-
</ul>
17-
<a href="https://niccokunzmann.github.io/download_latest/regex-tutorial.zip">Download</a>
18-
</body>
3+
4+
<head>
5+
<link rel="stylesheet" type="text/css" href="style.css">
6+
</head>
7+
8+
<body>
9+
<form method="get" action="/en/00-01.html">
10+
<button class="btn" type="submit">English</button>
11+
</form>
12+
<form method="get" action="de/00-01.html">
13+
<button type="submit">Deutsch</button>
14+
</form>
15+
<form method="get" action="sv/00-01.html">
16+
<button type="submit">Svenska</button>
17+
</form>
18+
<form method="get" action="https://niccokunzmann.github.io/download_latest/regex-tutorial.zip">
19+
<button type="submit">Download</button>
20+
</form>
21+
</body>
22+
1923
</html>

0 commit comments

Comments
 (0)