forked from p-m-project/medium-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav.html
108 lines (98 loc) · 4.63 KB
/
nav.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>nav</title>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!--navigation of page when user is --not-- signed in-->
<nav class="nav">
<nav class="nav-container">
<div >
<div class="nav-icon">
<div class="icon-title">
<!-- this tag always links to the home page-->
<a href="/">
<img src="media/MEDIUM-SBU34.png">
</a>
</div>
</div>
</div>
<div class="nav-space"></div>
<div class="nav-links" style="width: fit-content;">
<a href="#add-post" class="active">Get Started</a>
<a href="#signin">Sign In</a>
<a href="#about">About</a>
<div class="topnav-sandwich" >
<a onclick="showMenu()">
<span class="fa fa-bars" ></span>
</a>
<div class="topnav-sandwich-links" style="display: none;">
<!-- only the active page -->
<a href="#newpost" class="active">Get Started</a>
<a href="#signin">Sign In</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
</div>
<div class="search-container">
<form action="/action_page.php">
<input type="text" placeholder="Search.." name="search">
<button type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
</div>
</nav>
</nav>
<!--navigation of page when user is signed in-->
<nav class="nav-signin">
<nav class="nav-container">
<div >
<div class="nav-icon">
<div class="icon-title">
<!-- this tag always links to the home page-->
<a href="/">
<img src="media/MEDIUM-SBU34.png">
</a>
</div>
</div>
</div>
<div class="nav-space"></div>
<div class="nav-links" style="width: fit-content;">
<div class="navbar-profile-container" >
<a onclick="showProfileMenu()">
<img src="media/profile1.jpg" alt="" class="nav-profile">
</a>
<div class="navbar-profile-links" style="display: none;">
<div class="navbar-profile-show">
<div class="nav-profile"><img src="media/profile1.jpg" alt="" class="nav-profile"></div>
<div class="navbar-profile-info">
<p class="navbar-profile-username"><b>name</b></p>
<p class="navbar-profile-mail">gmail@gmail.com</p>
</div>
</div>
<a href="#newpost" >New Story</a>
<a href="#stories">Stories</a>
<a href="#setting">Setting</a>
<a href="#saved">Saved Articles</a>
<a href="#signin">Sign Out</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
</div>
<div class="search-container">
<form action="/action_page.php">
<input type="text" placeholder="Search.." name="search">
<button type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
</div>
</nav>
</nav>
<script src="js/nav.js"></script>
</body>
</html>