MY MEMO
[HTML] Definition of HTML and Simple Practice 본문
Before you know the HTML you have to know what is www
you can usually see the www whe you write down the url like "www.google.co.kr"
* Definition of World Wide Web
: The network information space for link Web page and file
HTML is for making Web page.
+) the founder of WWW is Tim berners Lee. he made it for share research material to other university's researcher.
* HTML is abbreviation of HyperText Markup Language.
HyperText : Link Document to Document.
This is the most important definition cuz it is base of the web. you can link other document and many documents link to other document. it can make big web.
Markup : Tag
you have seen tag many times when you buy new clothes. tag is for showing clothes's information.
so it is same meaning in web as well.
*tag
ex)
<a>이재연</a> -> you don't know what link in here
<a href=” http://dlwodus.tistory.com/”>이재연</a> -> you have to write down the address
<a href=” http://dlwodus.tistory.com/” target =”_blank”>이재연</a> -> if you add target tag, new windows come out and show that webpage.
+) this tag have two attribute "a" and "target".
+) ex) <a>이재연</a> -> 이재연 : contents
this source is from 생활코딩 : https://opentutorials.org/course/1688/9345
index.html
page_jsp.html
page_operation.html
page_variable.html
+) <!DOCTYPE html> 꼭 써줘야한다! 어떠한 html 표준으로 작성된 것인지 알기 위해!
'STUDYING > WEB' 카테고리의 다른 글
[DATABASE] 관계형 데이터 베이스 (0) | 2017.04.21 |
---|---|
[JSP] JSP 기본개념과 간단한 예제 (0) | 2017.04.20 |
[PHP] MYSQL 연동 (0) | 2017.04.20 |
[PHP] PHP의 기본 개념과 간단한 예제 (0) | 2017.04.20 |
[CSS] CSS의 기본 개념과 간단한 예제 코드 (0) | 2017.04.19 |