-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-story.html
79 lines (75 loc) · 2.75 KB
/
new-story.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="MyDiary is an online journal where users can record their thoughts and feelings">
<meta name="author" content="Olusola Oguntimehin">
<title>New Story | MyDiary</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<link rel="icon" type="image/png" href="./img/favicon.png" sizes="32x32" />
</head>
<body>
<div class="page page--is-flex page--stretches">
<header class="header">
<div class="container">
<div class="header__brand">
<a class="link" href="./index.html">
MyDiary
</a>
</div>
<nav class="nav">
<a href="#" class="nav__open-menu js-open-menu"></a>
<ul class="list nav__list js-nav-list">
<li class="list__item">
<a href="#" class="nav__close-menu js-close-menu"></a>
</li>
<li class="list__item">
<a href="./stories.html" class="link nav__link">
Stories
</a>
</li>
<li class="list__item">
<a href="./profile.html" class="link nav__link">
Profile
</a>
</li>
<li class="list__item">
<a href="./stories.html?filter=favs" class="link nav__link">
Favorites
</a>
</li>
<li class="list__item">
<a href="./index.html" class="link nav__link">
Logout
</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="container">
<div class="form-group js-new-story">
<h2 class="form-group__heading"></h2>
<form class="form-group__form" action="#">
<input class="form__input js-new-story-title" type="text" placeholder="Title" required />
<textarea placeholder="Content" class="form__input js-new-story-content" rows="12" cols="10" required></textarea>
<button type="submit" class="form__btn--submit js-new-story-btn">Save</button>
<p class="form__error js-error-field"></p>
</form>
</div>
</div>
<footer class="footer">
<div class="container">
<h4> Built with ❤ by
<a class="link" href="https://twitter.com/olusola_dev">Olusola</a>
</h4>
</div>
</footer>
</div>
<script type="text/javascript" src="./js/main.js"></script>
</body>
</html>