-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from alikahwaji/master
Creating a CSS style for the index.html
- Loading branch information
Showing
2 changed files
with
32 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
button { | ||
background-color: #958adb; | ||
border: none; | ||
color: white; | ||
text-align: center; | ||
text-decoration: none; | ||
display: inline-block; | ||
font-size: 10px; | ||
margin: 4px 2px; | ||
cursor: pointer; | ||
border-radius: 12px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
</head> | ||
<body> | ||
<ul> | ||
<li> | ||
<a href="en/00-01.html">English</a> | ||
</li> | ||
<li> | ||
<a href="de/00-01.html">Deutsch</a> | ||
</li> | ||
<li> | ||
<a href="sv/00-01.html">Svenska</a> | ||
</li> | ||
</ul> | ||
<a href="https://niccokunzmann.github.io/download_latest/regex-tutorial.zip">Download</a> | ||
</body> | ||
|
||
<head> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<form method="get" action="/en/00-01.html"> | ||
<button class="btn" type="submit">English</button> | ||
</form> | ||
<form method="get" action="de/00-01.html"> | ||
<button type="submit">Deutsch</button> | ||
</form> | ||
<form method="get" action="sv/00-01.html"> | ||
<button type="submit">Svenska</button> | ||
</form> | ||
<form method="get" action="https://niccokunzmann.github.io/download_latest/regex-tutorial.zip"> | ||
<button type="submit">Download</button> | ||
</form> | ||
</body> | ||
|
||
</html> |