120 likes | 271 Views
HTML Hyper Text Markup Language. 7/9/2007 Eun Cho. What is an HTML File?. HTML stands for H yper T ext M arkup L anguage An HTML file is a text file containing small markup tags The markup tags tell the Web browser how to display the page
E N D
HTMLHyper Text Markup Language 7/9/2007 Eun Cho
What is an HTML File? • HTML stands for Hyper Text Markup Language • An HTML file is a text file containing small markup tags • The markup tags tell the Web browser how to display the page • An HTML file must have an htm or html file extension • An HTML file can be created using a simple text editor @ YUST
Simple Example <html> <head> <title>인터넷 공학</title> </head> <body> 간단한 예제 홈페이지 입니다. <br> <b>글씨의 굵기가 굵어집니다.</b> </body> </html> @ YUST
Basic HTML Tags • Tag Description • <html>Defines an HTML document • <body>Defines the document's body • <h1> to <h6>Defines header 1 to header 6 • <p>Defines a paragraph • <br>Inserts a single line break • <hr>Defines a horizontal rule • <!-->Defines a comment @ YUST
HTML Links • HTML uses a hyperlink to link to another document on the Web. • Create hyperlinks • An image as a link • Open a link in a new browser window • Link to a location on the same page • Create a mailto link @ YUST
HTML Images • With HTML you can display images in a document. • Insert images • Insert images from different locations • Background image • Adjust images to different sizes • Make a hyperlink of an image • Create an image map • Turn an image into an image map @ YUST
HTML Tables • With HTML you can create tables. • TablesThis example demonstrates how to create tables in an HTML document. • Table bordersThis example demonstrates different table borders. @ YUST
HTML Lists • HTML supports ordered, unordered and definition lists. • An unordered listThis example demonstrates an unordered list. • An ordered listThis example demonstrates an ordered list. @ YUST
HTML Colors • Colors are displayed combining RED, GREEN, and BLUE light sources. • HTML Color Values • HTML Color Names @ YUST
HTML Frames • With frames, you can display more than one Web page in the same browser window. • Vertical frameset • Horizontal frameset @ YUST
Text fields Password fields Checkboxes Radio buttons Simple drop down box Textarea Create a button Form with input fields and a submit button Form with checkboxes Form with radio buttons Send e-mail from a form HTML Forms and Input Ref.:http://www.w3schools.com/html/html_forms.asp @ YUST
Reference • http://www.w3schools.com • http://www.w3c.com • http://www.wikipedia.com/html @ YUST