전송 : 데이터를 처리될 페이지로 이동
get => url 상에 데이터가 보여지는 방식
post => 전송 header 포함해서 보내는 방식
update
delete
? (url & query) 키와 값을 쌍으로 나누는 단위
https://search.daum.net/search?
w=tot
& (키(저장상자) = 값 w라는 이름하에 tot가 들어가있음
DA=YZR
& DA안에 YZR이 들어있음
t__nil_searchbox=btn
&
sug=
&
sugo=
&
sq=&o=
&
q=covid-19
q안에 covid-19가 들어가있음
q안에 들어가있는걸 search로 가져가 검색을 함
html로 그림그리는법
1.svg *tag svg=scalable Vactor Graphic 2.canvas + js *program
<body>
hello Svg <br>
<svg width="500" height="200">
<rect x="10" y="10" width="400" height="100" fill="yellow" stroke="green" stroke-width="4"/>
</svg><br>
<svg width="500" height="200">
<circle cx="50" cy="50" r="40" fill="yellow" stroke="red" stroke-width="4"/>
</svg>
<svg height="210" width="500">
<polygon points="100,10 40,198 190,78 10,78 160,198"
style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;"/>
</svg>
</body>
hello Svg