Wednesday, May 3, 2017

BASIC WEB DEVELOPMENT

WHAT IS HTML???
 HTML is an acronym for HyperText Markup Language

  • to tag various parts of Web document so browsing software will know hot to display that document's link, media, text, graphic and attached file.
HTML FILES
  1. is a text file containing small markup tags
  2. markup tags tell the Web browser how to display the page
  3. must have htm or html file extension                                                         https://www.quora.com/What-is-the-difference-between-a-html-and-a-htm-page
  4. can be created using simple text editor
EXAMPLE:


HTML: HEAD, TITLE, BODY
<html>
<head>
<title>Title of page</title>
</head>
<body>This is my first
homepage.
<b>This text is bold</b>
</body>
</html>
 
HEADING
<BODY>
<H1>Level 1 Heading</H1>
<H2>Level 2 Heading</H2>
<H3>Level 3 Heading</H3>
<H4>Level 4 Heading</H4>
<H5>Level 5 Heading</H5>
<H6>Level 6 Heading</H6>
</BODY> 

Level 1 Heading

Level 2 Heading

Level 3 Heading

Level 4 Heading

Level 5 Heading
Level 6 Heading
Image result for HEADING

No comments:

Post a Comment