Sunday, April 23, 2017

How html works?(introduction to html tags)

HTML has been the predominant language of the World Wide Web. Indeed, no small part what made the World Wide Web "World Wide" was HTML. With the creation of HTML and the web browsers that interpreted it anyone with a computer and a phone line could surf the web      There are other languages (e.g. XML) used to write web pages, but most web sites are written in HTML and will be for the foreseeable future. Essentially:HTML is how two computers speak to each other over the internet. HTML is "spoken" by two computers: 1. Client:The client is used by the person surfing the net, such as the computer you are looking at right now. 2. Server:A server stores and distributes websites over the net. I have a server where I store this web site.The terms are often encountered in the phrases "server-side" and "client-side"; meaning something occurs on the server or the client. "That script runs client-side." means "That script runs on the client".<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>

</html>

No comments:

Post a Comment