-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.html
69 lines (68 loc) · 1.74 KB
/
news.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
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>news</title>
</head>
<style>
.news-form{
background-color: rgba(48, 47, 47, 0.568);
width: 30%;
margin-left: 20rem;
margin-top: 4rem;
padding: 2rem;
}
input{
width: 100%;
}
.new{
margin-bottom: 1rem;
}
button{
width: 100%;
padding: 0.4rem;
box-shadow: 1px 1px 1px blue;
font-weight: bold;
}
button:hover{
background-color: blue;
}
</style>
<body>
<form action="" class="news-form">
<div class="new">
<label for="newsmaintytle">newsmaintytle</label>
<input type="text" id="newsmaintytle">
</div>
<div class="new">
<label for="newstytle">newstytle</label>
<input type="text" id="newstytle">
</div>
<div class="new">
<label for="newssammary">newssammary</label>
<input type="text" id="newssammary">
</div>
<div class="new">
<label for="newsdiscription">newsdiscription</label>
<input type="text" id="newsdiscription">
</div>
<div class="new">
<label for="newsimage">newsimage</label>
<input type="text" id="newsimage">
</div>
<div class="new">
<label for="categorys">categorys</label>
<input type="text" id="categorys">
</div>
<div class="new">
<label for="publishername">publishername</label>
<input type="text" id="publishername">
</div>
<div class="post">
<button type="submit">Post</button>
</div>
</form>
<script src="./Js/post news.js"></script>
</body>
</html>