-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.html
More file actions
86 lines (79 loc) · 1.92 KB
/
edit.html
File metadata and controls
86 lines (79 loc) · 1.92 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../Board/style.css">
<title>글쓰기</title>
<style>
.card {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card-header1 {
background-color: #1EC800;
padding: 10px;
color: #fff;
text-align: center;
}
.card-header1 a {
color: #fff;
text-decoration: none;
}
.card-write {
background-color: #fff;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.myinfo input[type="text"],
.myinfo input[type="password"],
.title-w input[type="text"],
.msg textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
.btn-w {
text-align: right;
margin-top: 20px;
}
.btn-w a {
background-color: #1EC800;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s ease;
}
.btn-w a:hover {
background-color: #3FD600;
}
</style>
</head>
<body>
<div class="card">
<div class="card-header1">
<h1><a href="../Board/style.css">게시판</a></h1>
</div>
<div class="card-write">
<div class="title-w">
<input type="text" id="title" placeholder="제목을 입력하세요.">
</div>
<div class="msg">
<textarea id="content" placeholder="내용을 입력하세요."></textarea>
<input type="file" name="" id="">
</div>
</div>
<div class="btn-w"><a href="../Board/detail.html">작성</a></div>
</div>
</body>
</html>