-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.06 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.06 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
<html>
<head>
<title>MiniReddit</title>
<script type="module" src="main.js"></script>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/posts.css">
<link rel="stylesheet" href="css/inputPost.css">
<link rel="stylesheet" href="css/replys.css">
</head>
<body>
<header>
<div id="titleHeader">
<div>
<h1 id="header-text">MiniReddit</h1>
</div>
</div>
</header>
<main id="mainContainer">
<div id="inputContainer">
<label id="inputLabel">Create new post</label>
<input type="text" id="titleInput" placeholder="Title">
<textarea type="text" id="contentInput" placeholder="Enter post here"></textarea>
<button id="postButton">Post</button>
</div>
<div id="posts">
<label id="postLabel">Posts</label>
</div>
<div id="replyDiv"></div>
</main>
</body>
</html>