Browse Source

Implemented navigation bar.

master
barthiv73098 4 years ago
parent
commit
0efb709524
2 changed files with 29 additions and 2 deletions
  1. 18
    2
      index.html
  2. 11
    0
      index_styles.css

+ 18
- 2
index.html View File

@@ -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
- 0
index_styles.css View File

@@ -0,0 +1,11 @@
.menu_element {
background-color: orangered;
width: 50px;
display: inline;
}

#menu {

list-style-type: none;
}

Loading…
Cancel
Save