Question:- Design a page containing the 3 X 2 table having your information.
Solution:-
Before going on the above Program we should know some basic knowledge on Internet Technology, HTML Basic Structure and how to create HTML Document?
Internet Technology:-
The internet Technology refers to devices, software, hardware and transmission protocols used to connect computers together in order to receive or send data from one computer to another within a network.
The web is a service that is supported by the internet.
Web Server:-
Web server are computers on the internet that host website, serving pages to viewers upon request. A computer that delivers (Serves up) web pages. Every web server has an IP address and possibly a domain name. If you enter a URL www.pschelper.com in your web browser, the browser tries to find the IP address of the domain name from the DNS Server.
Uniform Resource Locator:-
The hypertext transfer protocol uses internet addressess in a special format called Uniform Resource Locator or URL.
Web Browser:-
A Web Broswer is a software application such as Mozilla Firefox, Google Chrome, Microsoft Edge, Safari, Opera etc. designed to find hypertext documents on the web and then open the HTML documents on the user's computer.
Website:-
A website is a collection of related web pages. These pages contain text, graphics, audio, video and links to other pages which are typically identified with a common domain name, and published on at least one web server. Examples are pschelper.com, onlinekrishi.com etc.
Web Pages:-
Hypertext documents on the Internet are known as web pages. Your web browser interprets and displays web pages. Web browsers typically can display text, various graphic and multimedia format files.
Home Page:-
When we load a web browser the page which loads first is called home page of the website.
Search Engines:-
Suppose you want to look at Chapter 10 of your computer Book. What would you do? You would look at the contents pages, search for the chapter and find out the page number of that chapter then opens that page number of your book.
Similarly, it is not always easy to find information (websites) or what you want on the internet (web). There are large numbers of websites on the internet.
So to search websites, Search engines are well engines or robots that crawl the web looking for new web pages when we typed some words on the web browser.
Google, Bing, Yahoo Search, Ask.com, are some popular search engines.
HTML Basic Structure:-
Every HTML document has a basic structure. The HTML document is mainly divided into two sections. The entire document is enclosed with in <HTML> </HTML> tags.
Within these tags two distinct sections are Document Head contained in <Head> </HEAD> and Body section contained in <BODY> </BODY>
<html>
<head><title> </title></head>
<body>
</body>
</html>
1) Go to Computer's Search Box, type Notepad and click on Notepad Software. Do as seen in the scene below.
2) Write Basic HTML Structure Tag in Notepade software. For example, how to display "Welcome to Public Service Commission" welome text moving in the top of the web page. Write as written in Notepad Software below.
3) Then press CTRL + S button as written above in Notepade. Write the file name, then the filename, then dot (.), Type html and save it to the desired location / drive. As given below.
4) Open the HTML document saved on the desktop from the browser on the computer. Do as given on the screen below.
5) After opening the html document in the browser, it looks as given below.
To create an Html document from Notepad software, try to complete the above 1 to 5 points time and time again. Type html code with smart way is your challenge.
Now we move on the above question to write HTML Code:-
<html>
<head><title></title></head>
<body>
<table border="1">
<tr>
<td>Name</td>
<td>Address</td>
<td>Age</td>
<td>Gender</td>
<td>Contact</td>
<td>Email</td>
</tr>
<tr>
<td>Mohan Bhatt</td>
<td>Bhujela, Nepal</td>
<td>25</td>
<td>Male</td>
<td>9848844120</td>
<td>bhattmohandutt@yahoo.com</td>
</tr></br></br>
<img src="Desert.jpg" width="200" height="200" /></br></br>
<a href="http://www.psc.gov.np">Click here to open PSC website</a>
</table>
</body>
</html>
No comments:
Post a Comment