-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
47 lines (43 loc) · 1.56 KB
/
post.html
File metadata and controls
47 lines (43 loc) · 1.56 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Post</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="ccc2">
<header>
<div class="container">
<h1>Interior Design Blog</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="profile.html">Profile</a></li>
<li><a href="explore.html">Explore</a></li>
</ul>
</nav>
</div>
</header>
<section class="post-form">
<div class="container">
<h2>Create a New Post</h2>
<form action="post.php" method="post" enctype="multipart/form-data">
<label for="images">Upload Images:</label>
<input type="file" name="images[]" id="images" multiple required>
<br><br>
<button type="submit" name="publish" class="btn">Publish</button>
<button type="button" class="btn" onclick="window.location.href='profile.html'">Cancel</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Interior Design Blog. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>