-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (59 loc) · 2.04 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Main Style Sheet -->
<link rel="stylesheet" href="styles.css" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.13.1/css/all.css"
integrity="sha384-xxzQGERXS00kBmZW/6qxqJPyxW3UR0BPsL4c8ILaIWXva5kFi7TxkIIaMiKtqV1Q"
crossorigin="anonymous"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<title>Misspastelwitch's I love web</title>
</head>
<body>
<header><h1 class="title">I Love Web</h1></header>
<!-- Journal Entry Section -->
<section class="section journal-section">
<div class="container">
<div class="container-row container-row-journal">
<div class="container-item container-item-journal">
<form id="entryForm" action="">
<label for="entry-title" class="journal-label">Entry Title</label>
<input
type="text"
name="entry-title"
id="entry-title"
class="entry-text-title"
placeholder="What I did today✏️"
/>
<label for="entry" class="journal-label">Today's Entry</label>
<textarea
name="daily-entry"
id="entry"
class="entry-text-box"
placeholder="Today I..."
></textarea>
<button class="btn-main entry-submit-btn" type="submit">Checkout!</button>
</form>
</div>
</div>
</div>
</section>
<!-- Journal Entry Results -->
<section class="section sectionEntryResults" id="entryResultsSection">
<div class="container">
<div class="container-row entryResultRow"></div>
</div>
</section>
<script src="index.js"></script>
</body>
</html>