-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (46 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Post Editor</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<form id="blogForm">
<label for="title">Title</label>
<input type="text" id="title" name="title">
<label for="description">Description</label>
<textarea id="description" name="description"></textarea>
<label for="image">Image</label>
<input type="file" id="image" name="image">
<div class="contents">
<label>Contents</label>
<div class="section-header">
<p>Section</p>
<button type="button" id="addSectionButton">+</button>
</div>
<div class="sections">
<div class="section">
<details open>
<summary>Section One:</summary>
<label for="sectionTitle">Section Title:</label>
<input type="text" id="sectionTitle" name="sectionTitle">
<div class="editor-toolbar">
<button type="button" class="boldBtn"><img src="./assets/images/bold.svg" alt="Bold"></button>
<button type="button" class="italicBtn"><img src="./assets/images/italic.svg" alt="Italic" class="italic"></button>
<button type="button" class="quoteBtn"><img src="./assets/images/quote.svg" alt="Quote"></button>
<button><img src="./assets/images/image.svg" alt="Add Image" class="pic"></button>
</div>
<textarea class="sectionContent" placeholder="Write your content here..."></textarea>
</details>
</div>
</div>
</div>
<button type="submit" id="submitForm">Publish</button>
</form>
</div>
<script src="script.js"></script>
</body>
</html>