WEB DEVELOPMENT
How can web sits work?
Basic requirement to Build a Web Site:
- HTML
- CSS
- JAVASCRIPT
HTML it is most important for web sites.It is the man body of the site.
CSS it is using for making web site beautiful with style and designs.
JAVASCRIPTit is the man part of web site its work in web site as a brain.
HTML stands for Hyper Text Markup Language.
It is used to design web pages using markup language.
HTML is the combination of Hypertext and Markup language. Hypertext defines the link between the web pages.
Markup language is used to define the text document within tag which defines the structure of web pages.
This language is used to annotate (make notes for the computer) text so that a machine can understand it and manipulate text accordingly.
Most of markup (e.g. HTML) languages are human readable.Language uses tags to define what manipulation has to be done on the text.
HTML is a very easy language to learn and super simple to write (not that I would necessarily call HTML a language so to speak). A Markup Language is defined as transporting data, not acting upon the data itself. The “code” is encapsulated in a skeleton.
A Simple HTML Document
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
- This Simple HTML Document Result Shown As (Output)
My First Heading
My first paragraph.
- The <!DOCTYPE html> declaration defines this document to be HTML5.
- The <html> element is the root element of an HTML page.
- The <head> element contains meta information about the which will not be displayed on the main contentof a web page.
- The <title> element specifies a title for the document.It appears on the upper part of the browser.
- The <body> element contains the visible page content.Such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
- The <h1> element defines a large heading.
- The <p> element defines a paragraph.
HTML tags normally come in pairs but Some HTML tags are not closed, for example <br> and <hr>.
All HTML tags must enclosed with <> these brackets.
Every tag in HTML perform differen tasks.
If you have used an open tag , then you must use a close tag (except some tags)
