Skip to content

Commit

Permalink
Merge pull request #102 from alikahwaji/master
Browse files Browse the repository at this point in the history
Creating a CSS style for the index.html
  • Loading branch information
niccokunzmann authored Aug 18, 2017
2 parents ea24fba + 71c95ee commit a4f9dc2
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 16 deletions.
12 changes: 12 additions & 0 deletions css/style.css
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;
}
36 changes: 20 additions & 16 deletions index.html
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>

0 comments on commit a4f9dc2

Please sign in to comment.