Skip to content

Commit a793332

Browse files
committed
Changed: Folder title, Add: New codes for new folder (navbar, unfinished).
1 parent ebd1ed2 commit a793332

File tree

4 files changed

+48
-0
lines changed

4 files changed

+48
-0
lines changed

ThoughtNest Part2/images/ico.png

19.5 KB
Loading
30.1 KB
Loading

ThoughtNest Part2/main.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Document</title>
5+
<link rel="stylesheet" href="styles2.css"/>
6+
<link rel="icon" href="images/ico.png"/>
7+
<meta charset="UTF-8">
8+
</head>
9+
<body>
10+
11+
<nav>
12+
13+
<div class="brand-container">
14+
15+
<img src="images/ico.png" width="40px"/>
16+
<h2 class="brand-title">ThoughtNest</h2>
17+
18+
</div>
19+
<div class="link-container">
20+
<a href="#">Home</a>
21+
<a href="#">About</a>
22+
<a href="#">Contacts</a>
23+
<a href="#">Log In</a>
24+
</div>
25+
26+
</nav>
27+
28+
</body>
29+
</html>

ThoughtNest Part2/styles2.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
body{
2+
margin:0;
3+
}
4+
5+
nav{
6+
background-color: rgb(88, 68, 13);
7+
padding: 10px 20px;
8+
}
9+
10+
.brand-title{
11+
font-family: 'Courier New', Courier, monospace;
12+
font-variant: small-caps;
13+
color: bisque;
14+
margin: 0;
15+
display: inline-block;
16+
position: relative;
17+
top: -10px;
18+
left: 15px;
19+
}

0 commit comments

Comments
 (0)