Web engineering ( 24 Sep. 2012 )
Web server
Web client
Html
Css
Html language was started
To create an web page open notepad and type desired tags
than save it as name.html
Than open the saved file in any web browser
Different tags were explained
Example
<html>
<body>
<h1>
</h1>
<title>
</title>
</body>
</html>
Example Explained
-
The text between <html> and
</html> describes the web page
-
The text between <body> and
</body> is the visible page content
-
The text between <title> and
</title> is displayed as a title
-
The text between <h1> and </h1> is
displayed as a heading
you can change h1 to h6 it will
increase the size of text
What is HTML?
HTML is a language for describing web pages.- HTML stands for Hyper Text Markup Language
- HTML is a markup language
- A markup language is a set of markup tags
- The tags describes document content
- HTML documents contain HTML tags and plain text
- HTML documents are also called web pages
HTML Tags
HTML markup tags are usually called HTML tags- HTML tags are keywords (tag names) surrounded by angle brackets like <html>
- HTML tags normally come in pairs like <b> and </b>
- The first tag in a pair is the start tag, the second tag is the end tag
- The end tag is written like the start tag, with a forward slash before the tag name
- Start and end tags are also called opening tags and closing tags
to insert any tage following is the syntax
<tagname>content</tagname>
Other tags
<a href="url">Link text</a>
-to
paste a link
Example
<a href="http://www.google.com/">Visit
google</a>
<img src="url" alt="some_text">
-to
paste an image. The image should in same folder where the html file is located
For further study www.w3schools.com
Comments
Post a Comment