diff --git a/index.html b/index.html new file mode 100644 index 0000000..17813c9 --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ + + + + + + Document + + + + + +
+ +
+ + \ No newline at end of file diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..3e3abed --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,21 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +#nav_bar { + display: flex; + flex-direction:row; + align-items: center; + background-color: #333; + color: white; + padding: 10px; + margin: 0; +} + +#nav_bar a { + color: white; + text-decoration: none; + padding: 10px; +}