-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrequest_correction.html
More file actions
111 lines (100 loc) · 2.45 KB
/
request_correction.html
File metadata and controls
111 lines (100 loc) · 2.45 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!--2017038082_반용빈-->
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Jua&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/5d4f9b3bee.js" crossorigin="anonymous"></script>
<style>
textarea
{
font-family: 'Jua', sans-serif;
display:block;
width: 560px;
margin-left:auto; margin-right:auto; margin-top:auto; margin-down:auto;
height: 500px;
font-size:24px;
}
input[type=text]
{
font-family: 'Jua', sans-serif;
font-size:30px;
text-align:left;
width:550px;
height : 24px;
}
body {
background-color: silver;
}
h1 {
font-family: 'Jua', sans-serif;
font-size:35px;
color: black;
text-align: center;
background-color: white;
border-radius: 10px;
border: 2px solid black;
width: 620px; left:0; right:0; margin-left:auto; margin-right:auto;
}
h2
{
font-family: 'Jua', sans-serif;
color :black;
text-align:center;
background-color:silver;
}
h3{
font-family: 'Jua', sans-serif;
text-align:center;
background-color:silver;
border-radius: 15px;
font-size:70px;
}
.button {
font-family: 'Jua', sans-serif;
background-color : white;
border-color: black;
color : black;
padding :15px 30px;
text-align :left;
text-decoration:none;
display: inline-block;
font-size:24px;
margin : 5px 6px;
cursor: pointer;
}
.button:hover{
font-family: 'Jua', sans-serif;
font-size:32px;
color : white;
background-color : black;
border-color: white;
margin : 5px 6px;
<!-- 버튼에 마우스 가져다 대면 확대댐 -->
}
p {
font-family: verdana;
font-size: 80px;
}
<!-- css지정하기 -->
</style>
<title> 건의사항 작성 </title> <!-- 홈페이지 이름 -->
</head>
<body>
<h3><i class="fas fa-list-alt"></i> 개선 및 건의 사항</h3>
<p>
<form action="#" method="post" autocomplete="off">
{% csrf_token %}
<h1><b><i class="fas fa-utensils"></i> 식당이름</b>
<input name="res_name" type="text"><br></h1>
<h1><b><i class="fas fa-comments"></i> 내용</b><br>
<textarea name="correction"></textarea><br></h1>
<br><br>
<h2>
<input type="submit" class = "button" value="등록" >
<input type="reset" class = "button" value = "초기화">
<input type="button" class = "button" value = "취소" onclick="history.back();">
</h2>
</form>
</p>
</body>
</html>