-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjournal.html
97 lines (89 loc) · 4.54 KB
/
journal.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./journal.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<header>
<nav class="navBarBtn">
<ul class="mainnorderedList">
<li class="listItems item1" data-learning="smart">Home
<ul class="nodisplay pathList">
<li data-dropdown="drop!" class="listItems dropdownItems"><a data-dropdown="drop!" href="journal.html">Make A Post</a></li>
<li data-dropdown="drop!" class="listItems dropdownItems"><a data-dropdown="drop!" href="viewPosts.html">View Posts</a></li>
</ul>
</li>
<li class="listItems item2" data-contact="getInTouch">Contact
<ul class="nodisplay contactList">
<li data-dropdown="drop!" class="listItems dropdownItems"><a data-dropdown="drop!">Github</a></li>
<li data-dropdown="drop!" class="listItems dropdownItems"><a href="aboutMe.html" data-dropdown="drop!">About Me</a></li>
</ul>
</li>
<li class="listItems item3" data-projects="works">Projects
<ul class="nodisplay projectList">
<li data-dropdown="drop!"><a href="#" data-dropdown="drop!">Nosapp.app</a></li>
<li data-dropdown="drop!"><a href="#" data-dropdown="drop!">Zelcore.Finance</a></li>
</ul>
</li>
<li class="listItems item4" data-journal="notepad">Journal Entries
<ul class="nodisplay journalList">
<li data-dropdown="drop!"><a data-dropdown="drop!" href="#">Popular</a></li>
<li data-dropdown="drop!"><a data-dropdown="drop!" href="#">Oldest</a></li>
<li data-dropdown="drop!"><a data-dropdown="drop!" href="#">Newest</a></li>
</ul>
</li>
</ul>
</nav>
</header>
<!-- body -->
<body>
<main>
<section class="formSection" >
<form class="forms">
<input
class="titleInput"
type="text"
name="Title"
id="0"
placeholder="Title"
required
>
<textarea
style="resize: none;"
rows="6"
maxlength="300"
minlength="10"
class="textInput"
name="Content"
id="1"
placeholder="What Have We Learned?"
required
></textarea>
<div class="input-wrapper">
<input
class="fileInput"
type="file"
id="file"
name="Files"
id="4"
required
>
<label for="file">
<i for="file" class="fa-solid fa-upload fa-lg"></i>
</label>
</div>
<button class="postBtn" type="submit" class="submitBtn">Post</button>
</form>
</section>
<section class="postContainer">
</section>
</main>
<script type="module" src="./journal.js"></script>
</body>
<footer>
Created by <a style="text-decoration: none;" href="https://github.com/snovacain" target="_blank" ><span class= "creator_name"> Thomas <span class="copyrightDate"></span> </span></a>
</footer>
</html>
<!-- add Date to forms .. so forms update with a specific date each time -->