Skip to content

Commit

Permalink
Header (#1)
Browse files Browse the repository at this point in the history
* Add header markup

* Add header styles
  • Loading branch information
jindalharshit authored Apr 10, 2022
1 parent e15b0d0 commit 9603186
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
<!doctype html>

<html lang="en">
<head>
<meta charset="utf-8">

<title>GitHub Flow Course</title>
<meta name="description" content="GitHub Flow Course">
<meta name="author" content="Johannes Kettmann">

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="styles.css">
</head>

<body>
Placeholder
<header class="header">
Header
</header>
</body>
</html>
7 changes: 7 additions & 0 deletions src/styles.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
}
.header {
height: 50px;
display: flex;
justify-content: center;
align-items: center;
border-bottom: 1px solid black;
}

0 comments on commit 9603186

Please sign in to comment.