Myriad Future

write.html

💻 코드 1
(1)  <html>
(2)  <head>
(3)  <meta charset="UTF-8">
(4)  <title>메모 작성</title>
(5)  <link rel="stylesheet" href="/css/main.css">
(6)  </head>
(7)  <body>
(8)   <h1>메모 작성</h1>
(9)   <form method="post" action="/insert">
(10)   제목:
(11)   <input type="text" name="title" size="90" required>
(12)   <br>
(13)   내용:
(14)   <br>
(15)   <textarea name="content" rows="8" cols="80" required></textarea><br>
(16)   <button type="submit">등록</button>
(17)   <button type="button" onclick="location.href='/'">목록</button>
(18)   </form>
(19)  </body>
(20)  </html>