forked from Countwolfinstine/Yet-Another-News-Aggregator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_post.html
68 lines (64 loc) · 2.02 KB
/
new_post.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
<!DOCTYPE html>
<html>
<head>
<title>YANA</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" >
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" />
</head>
<style>
body{
background-color:#ffdb99;
}
div.title_container > div {
margin:2px;
margin-top:4px;
}
div.container > div{
margin-top:10px;
}
.container{
background-color:#b3b3b3;
border-radius:5px;
}
.title_container{
margin:5px;
background-color:#d9d9d9;
}
.para_container{
background-color:#d9d9d9;
}
</style>
<body>
<div class="container" style="border:2px solid teal;height:500px;margin-top:2%;">
<form target="_blank" method="post" action = "post_data.php" style="height:100%;">
<div class="title_container" style="border:1px solid #006666;height:7%;display:flex;">
<div class="title" style="float:left;width:7%;margin-left:10px;">
<span><b>TITLE : </b></span>
</div>
<div class="title_box" style="float:left;width:73%;">
<input name="title" placeholder="Insert Title Here..." style="width:95%;" id="title"></input>
</div>
<div class="font" style="float:left;width:7%;">
<span><b>FONT : </b></span>
</div>
<div class="font_selector" style="float:left;width:10%;">
<select class="font">
<option>Roboto</option>
<option>Sans Serif</option>
</select>
</div>
</div><br>
<div class="para_container" style="border:1px solid #006666;height:85%;">
<div class="para" >
<div class="para_box">
<!-- <input class="para_input" style="margin-left:10%;margin-top:8px;width:60%;height:350px;"></input> -->
<textarea name="para" cols="100" rows="10" id="para" style="margin-left:10%;margin-top:8px;"></textarea>
</div>
</div>
<button type="submit" id="post" style="float:right;bottom:5px;width:10%;margin-right:15%;">Post</button>
</div>
</form>
</div>
</body>
<!--script src="js/new_post.js"></script-->
</html>