Pages

Thursday, January 7, 2016

Before Creating A Website

 

What is Necessary before creating a website?

Answer:
A basic concept of web base technologies like HTML, CSS and Javascript

HTML:
HTML is a markup language for describing web documents (web pages).
  1. HTML stands for Hyper Text Markup Language
  2. A markup language is a set of markup tags
  3. HTML documents are described by HTML tags
  4. Each HTML tag describes different document content 

An Example of HTML 

<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>
Write the above code in notepad or other web Editor application and save it in .html format

 

No comments:

Post a Comment