forked from p-m-project/medium-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstories-page.html
159 lines (132 loc) · 5.86 KB
/
stories-page.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>stories</title>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/stories.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<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">[email protected]</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>
<!--*******************************start storie page -->
<section class="storeis-title">
<div class="storeis-text">
<h1>Your Stories</h1>
<div class="storeis-tow-menu">
<div class="storeis-menu-right">
<a href="#"><p>
import a Story
</p></a>
</div>
<div class="storeis-menu-right-tow">
<a href="#"><p>
Write a story
</p></a>
</div>
</div>
</div>
<!--start tab menu -->
<div class="stories-menu">
<button class="w3-bar-item w3-button" onclick="openCity('Drafts')">Drafts</button>
<button class="w3-bar-item w3-button" onclick="openCity('Published')">Published</button>
</div>
<div id="Drafts" class="w3-container city">
<div class="stories-menu-tab">
<a href="#story-page">
<h2>Drafts</h2>
</a> <div class="stories-button">
<p>London is the capital city of England.</p>
<div>
<button>Delete</button>
</div>
</div>
</div>
<div class="stories-menu-tab">
<a href="#story-page">
<h2>Drafts</h2>
</a>
<div class="stories-button">
<p>London is the capital city of England.</p>
<div>
<button>Delete</button>
</div>
</div>
</div>
</div>
<!-- **************************************************part Draft -->
<div id="Published" class="w3-container city" style="display:none">
<div class="stories-menu-tab">
<a href="#story-page">
<h2>Published</h2>
</a>
<div class="stories-button">
<p>London is the capital city of England.</p>
<div>
<button>Delete</button>
</div>
</div>
</div>
<div class="stories-menu-tab">
<a href="#story-page">
<h2>Published</h2>
</a> <div class="stories-button">
<p>London is the capital city of England.</p>
<div>
<button>Delete</button>
</div>
</div>
</div>
</div>
<!-- **************************************************part Published -->
<!--*******************************end storie page -->
<script src="js/nav.js"></script>
<script src="js/stories.js"></script>
</body>
</html>