Web development is a broad term for the work involved in developing a web site for the Internet (WWW) or an Intra-net (A private network).
-LANGUAGE FOR WEB DEVELOPMENT-
1.Front design
HTML, CSS
2.Client side
JavaScript
3.Server side
PHP, NodeJS, Phython, Ruby
4.Database
SQL
WHAT IS HTML?
1.HTML is the standard markup language for creating Web pages.
2.HTML stands for Hyper Text Markup Language
3.HTML describes the structure of Web pages using markup
4.HTML elements are the building blocks of HTML pages
5.HTML elements are represented by tags
HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
Browsers do not display the HTML tags, but use them to render the content of the page
A Simple HTML Document
Example
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
The <html> element is the root element of an HTML page
The <head> element contains meta information about the document
The <title> element specifies a title for the document
The <body> element contains the visible page content
The <h1> element defines a large heading
The <p> element defines a paragraph
good keep it up
ReplyDeletethanks ma
ReplyDelete