-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
187 lines (168 loc) · 5.57 KB
/
test.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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset='utf-8'>
<title>HTML의 시작</title>
</head>
<body>
<!--제목 태그 예시 3분-->
<h1>제목의 중요도</h1>
<h2>제목의 중요도</h2>
<h3>제목의 중요도</h3>
<h4>제목의 중요도</h4>
<h5>제목의 중요도</h5>
<h6>제목의 중요도</h6>
<hr>
<!--본문 태그 예시 3분-->
<p>지금 몇 점일까</p>
<p> 안타를 쳤을까 아웃이 됐을까
<br>이겨야되는데
</p>
<pre>
태그는 입력한 그대로를 보여주기 때문에
처음 들어본 ㅐㅌ그
그대로 반영을 하여 보여준다
</pre>
<br>
<!--본문 태그 예시2 3분-->
<strong>텍스트를 굵게 표현</strong>
<br>
<br>
<em>텍스트를 기울여서 표현</em>
<br>
<br>
텍스트를<sub>내려서 표현</sub>
<br>
<br>
텍스트를<sup>올려서 표현</sup>
<br>
<br>
<ins>텍스트에 밑줄을 삽입</ins>
<br>
<br>
<del>텍스트에 취소선을 삽입</del>
<br>
<br>
텍스트에<del>취소선을 삽입</del>
<br>
<!--링크 태그 예시 3분-->
<a href = "#section1">이동하려면 클릭하세요.</a>
<br>
<a>Naver</a>
<br>
<a href = "https://www.naver.com/">Naver</a>
<br>
<a href = "https://www.naver.com/" title = "네이버로 이동하는 링크">Naver</a>
<br>
<br>
<a href = "https://www.naver.com/" target = "_blank">Naver 새 탭</a>
<br>
<a href = "https://www.naver.com/" target = "_self">Naver 현재 탭</a>
<h1>공백1</h1>
<h1>공백1</h1>
<h1>공백1</h1>
<h1>공백1</h1>
<h1>공백1</h1>
<h1>공백1</h1>
<p id="section1">이동완료</p>
<br>
<!--이미지 태그 예시 3분-->
<img src = "https://media.discordapp.net/attachments/955387965247467520/960839271290388490/KakaoTalk_20220307_143904001.jpg?width=461&height=461" alt = "숭실 멋쟁이 사자처럼 로고"
width = "10%" height = "10%">
<br>
<img src = "" alt = "img src가 잘못되면 alt 문구가 나와요!">
<hr>
<!--테이블 태그 예시 3분-->
<table>
<tr>
<th>학과</th>
<th>이름</th>
<th>파트</th>
</tr>
<tr>
<td>글로벌미디엏가부</td>
<td>김멋쟁</td>
<td>기획</td>
</tr>
<tr>
<td>컴퓨터학부</td>
<td>최사자</td>
<td>프론트</td>
</tr>
</table>
<hr>
<!--리스트 태그 예시 5분-->
<h2>Daily 운동 루틴</h2>
<ol>
<li>유산소 운동 30분</li>
<li>체스트 프레스 200 kg * 12회 4sets</li>
<li>벤치 프레스 600kg *10회 3sets</li>
<li>펙 덱 플라이 300kg * 15회 3sets</li>
</ol>
<h2>식단</h2>
<ul>
<li>닭가슴살 400g</li>
<li>단백질 쉐이크 2스쿱</li>
<li>계란 흰자 2개</li>
<li>고구마 반개</li>
</ul>
<h2>스트레칭</h2>
<ol type = "a" start ="3" reversed>
<li>가슴 스트레칭</li>
<li>허리 스트레칭</li>
<li>어깨 스트레칭</li>
</ol>
<hr>
<!--method 속성 예시 5분-->
<h2>method-GET 예시</h2>
<form action="전송할 대상" method = "GET">
<label>ID</label>
<input type="text" name="id">
</form>
<h2>method-POST 예시</h2>
<form actio = "전송할 대상" method = "POST">
<label>ID</label>
<input type = "text" name = "id">
</form>
<hr>
<!--Form 태그 예시 Input-5분 select-4분 나머지-6분-->
<h2>Form 태그 예시</h2>
<form action = "URL" method = "POST">
<label for = "id">ID</label>
<input type = "text" name = "id" placeholder="아이디를 입력하세요.">
<br>
<label for = "pw">PW: </label>
<input types = "password" name="pw" placeholder="패스워드를 입력하세요.">
<br>
<label for = "email adrs">email: </label>
<input types = "text" name = "email adrs" placeholder="이메일을 입력하세요.">
<select name="email" id="adrs">
<optgroup label = "이메일 선택">
<option value = "naver">@naver.com</option>
<option value = "google">@google.com</option>
<option value = "daum">@daum.net</option>
</optgroup>
</select>
<br>
<div>
<h3>다룰 수 있는 언어는 무엇이 있나요?</h3>
<input type = "checkbox"><label>Java</label>
<input type = "checkbox"><label>Python</label>
<input type = "checkbox"><label>C</label>
<input type = "checkbox"><label>html&css</label>
<label for="js"><input type="checkbox" id = "js">JS</label>
</div>
<div>
<h3>몇 학년에 재학 중인가요? </h3>
<input type = "radio" name = "grade"><label>1학년</label>
<input type = "radio" name = "grade"><label>2학년</label>
<input type = "radio" name = "grade"><label>3학년</label>
<input type = "radio" name = "grade"><label>4학년</label>
</div>
<div>
<textarea name="note" id="notebook" cols="30" rows="20" placeholder="글을 작성하세요."></textarea>
<button type = "submit">제출하기</button>
</div>
</form>
</body>
</html>