Implemented navigation bar.
This commit is contained in:
parent
7f4a6a11d9
commit
0efb709524
20
index.html
20
index.html
@ -1,11 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/index_styles.css">
|
||||
|
||||
<title>Quitt</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
</html>
|
||||
<nav>
|
||||
<ul id="menu">
|
||||
<li class="menu_element"><a class="menu_element" href="/index.html">Home</a></li>
|
||||
<li class="menu_element"><a href="/index.html">Balance</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</nav>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
11
index_styles.css
Normal file
11
index_styles.css
Normal file
@ -0,0 +1,11 @@
|
||||
.menu_element {
|
||||
background-color: orangered;
|
||||
width: 50px;
|
||||
display: inline;
|
||||
|
||||
}
|
||||
|
||||
#menu {
|
||||
|
||||
list-style-type: none;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user