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).
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).
- HTML stands for Hyper Text Markup Language
- A markup language is a set of markup tags
- HTML documents are described by HTML tags
- 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