본문 바로가기
프로그래밍

비디오 / form / 블록,라인

by BlueOcean&Shark 2019. 3. 27.
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
<!DOCTYPE html>
<head>
    <title>
        열심히공부하자
    </title>
</head>
<body>
    <!--바디오-->
    <video src="190116_19개월아기가 사진찍을때/20190115_152300.mp4" width="500" height="300" type="video/mp4" controls="controls" ></video>            
 
 
    <!--form태그-->
    <form action="#" method="GET"> <!--action : 해당 정보를 보낼 주소 / method : get,post 방식지정-->
        이름 : <input type="text" name="uname" /><br />
        비밀번호 : <input type="password" name="upw" /><br />
        연락처 : <input type="text" name="uphone1" size="5" /> - 
        <input type="text" name="uphone2" size="5" />
        <input type="text" name="uphone3" size="5" /> <br />
        사진 :  <input type="file" name upic" /> <br />
        성별구분 : <input type="radio" name="gender" value="m">남
                  <input type="radio" name="gender" value="w">여 <br />
        사용언어 : <input type="checkbox" name="lan" value="kor" checked="checked">한국어
                  <input type="checkbox" name="lan" value="eng" >영어
                  <input type="checkbox" name="lan" value="jap" >일본어
                  <input type="checkbox" name="lan" value="chi" >중국어<br />
        자기소개 : <textarea rows="5" cols="20">간단하게 입력하세요.</textarea> <br />
        국적 : <select>
            <option>한국</option>
            <option>미국</option>
            <option>일본</option>
            <option>중국</option>
        </select><br />
        좋아하는음식 : <select multiple="multiple">
            <option>김치</option>
            <option>초밥</option>
            <option>짜장면</option>
            <option>피자</option>
        </select><br />
        <input type="submit" />
    </form>
 
    <!--블록태그 - div-->
    <div>block_01</div>
    <div>block_02</div>
    <div>block_03</div>
    <div>block_04</div>
    
    <br /><br />
 
    <!--라인태그 - span-->
    <span>inline_01</span>
    <span>inline_02</span>
    <span>inline_03</span>
    <span>inline_04</span>
</body>
 
cs


'프로그래밍' 카테고리의 다른 글

선택자(개별,복수개,모두)  (0) 2019.03.27
div와 시멘틱을 이용한 레이아웃  (0) 2019.03.27
이미지/사운드  (0) 2019.03.27
[WPF]레이아웃  (0) 2019.02.01
[WPF]WrapPanel  (0) 2019.02.01

댓글