or tested
by itself without a browsers like ,Explore, Torch Google Crome and so fur .
Guys, Now we going to look into Several Steps Trying To Make a simple web page.
But These pages are usually Created by HTML(Hyper text make up Language), And CSS(Cascading Style Sheets) Language
HTML, Is just a make up language is only Constructing the web pages,it contains a lot of tags, we will see all them later.
CSS, Describe How style and how Html Should display in browsers.
Lets see Stages in prering A simple Web page
1. Open A Text Editor
Text editor are the programs which we normally use for writing HTML Codes, These Includes Notepad,Notepad++,Sublime, And Others Depends in your Choice.Then Go To Start Menu and select the program installed or default Notepad or Go To Search Button Type Notepad.Here in Our Example we will use Sublime As Our Text Editor Be-course its awesome and has well direction hints.2.Create a page by Saving it "HTML.INDEX" file your Location
Now you can starte typing some html codes, by Starting with <!DOCTYPE Html> open tags Which Goes with Close tags like this </Html> As you Can see We are Following These rules is for every coders northing will be displed on web browsers if you didnt have done this stage. So Make Sure you open with html tags and close with same html tags. Then remember to save your file as more you flow write your codes.
3. Add Title of web tab
What this means, As you open your page in browser there is two tabs displaying headings
- Header tab
- Title tab
for example
<!DOC-TYPE Html>
<head><title>Pizza Tech </title>
</head>
</html>