Skip to content

Commit fc67915

Browse files
committed
Added Header for post.html
1 parent abcbd0e commit fc67915

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

html/posts/post.css

Whitespace-only changes.

html/posts/post.html

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,38 @@
44
<meta charset="UTF-8" />
55
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Post - ScriBBler</title>
7+
<title>Post - Scribbler</title>
8+
<link rel="stylesheet" href="../../header.css" />
9+
<link rel="stylesheet" href="../../post.css" />
10+
<!-- TODO: Include Font Awesome file here -->
11+
<!-- TODO: Include Google Fonts file here -->
12+
<link rel="preconnect" href="https://fonts.gstatic.com" />
13+
<link
14+
href="https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap"
15+
rel="stylesheet"
16+
/>
17+
<link
18+
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap"
19+
rel="stylesheet"
20+
/>
821
</head>
9-
<body></body>
22+
<body>
23+
<!-- TODO: Include all your code for the header and home page here -->
24+
25+
<header id="header">
26+
<div id="logo_container">
27+
<div id="header_logo">ScriBBler</div>
28+
<div id="header_logo_tag">Explore, Imagine, Create</div>
29+
</div>
30+
<div id="button_container">
31+
<button id="btn_sign_in" onclick="showSignInModal()">
32+
Sign In</button
33+
><button id="btn_sign_up" onclick="showSignUpModal()">
34+
Sign Up
35+
</button>
36+
</div>
37+
</header>
38+
39+
<script src="index.js" type="text/javascript" async></script>
40+
</body>
1041
</html>

html/posts/post.js

Whitespace-only changes.

0 commit comments

Comments
 (0)