Skip to content

Instantly share code, notes, and snippets.

View PlumpMath's full-sized avatar
🏠
Pro

PlumpMath

🏠
Pro
View GitHub Profile
<!doctype html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
</head>
<body>
<h1>input의 required 속성은 필수</h1>
<h1>input의 pattern 속성은 정규표현식대로 입력 요구 </h1>
<!doctype html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
</head>
<body>
<h1>autocomplete 속성은 html5에서 추가 되었다.</h1>
<!doctype html>
<html>
<head>
<title></title>
<meta charset="utf-8"
name="viewport"
content="width=device-width,initial-scale=1.0" />
</head>
<body>
<h1> https://www.w3schools.com/html/html_form_input_types.asp </h1>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<form action="http://localhost/hidden.php">
<input type="text" name="id">
<input type="hidden" name="hide" value="egoing">
<input type="submit">
<!doctype html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
</head>
<body>
<h1>
서버 개발자가 알아야 되는 부분</br>
<!doctype html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
</head>
<body>
<h1>폼tag가 존재하는목적은, input입력 data들을 어디로 보낼것이냐 결정해준다.</h1>
<form method="post" action="http://localhost/login.php">
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<form action="http://localhost/color.php">
<h1>생상1</h1>
<!-- 폼아래 submit버튼을 누르면 select option에서 선택한 값이 GET매개변수로 전달 -->
<select name="color">
<html>
<head><meta charset="utf-8"></head>
<body>
<form action="http://localhost/form.php">
<!-- 텍스트박스 -->
<input type="text">
<!-- 폼액션 페이지 -->
<input type="submit" value="전송">
<!doctype html>
<html>
<head>
<title>HTML - 처음</title>
<meta charset="utf-8"
name="viewport"
content="width=device-width,initial-scale=1.0"/>
</head>
<body>
<h1><a href="index.html">HTML</a></h1>
@PlumpMath
PlumpMath / profiles.clj
Created March 17, 2017 00:15
clojure leiningen global configuration
{:repl{:plugins [[cider/cider-nrepl "0.14.0"]
[refactor-nrepl "2.2.0"]]
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.nrepl "0.2.12"]
[org.clojure/core.match "0.3.0-alpha4"]
[org.clojure/core.async "0.2.395"]
[philoskim/debux "0.2.1"]
[org.clojure/clojurescript "1.9.293"]
[domina "1.0.3"]]
};;:repl{:plugins