0% found this document useful (0 votes)
2 views2 pages

HTML Notes

This document provides notes on HTML, including its structure, basic elements, and tools for web development. It outlines the components of an HTML document, such as the head and body sections, and details various HTML tags for headings, paragraphs, and lists. Additionally, it mentions the introduction of HTML by Tim Berners-Lee in 1993 and lists popular code editors and browsers.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

HTML Notes

This document provides notes on HTML, including its structure, basic elements, and tools for web development. It outlines the components of an HTML document, such as the head and body sections, and details various HTML tags for headings, paragraphs, and lists. Additionally, it mentions the introduction of HTML by Tim Berners-Lee in 1993 and lists popular code editors and browsers.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

HTML NOTES:

frontend:
html -request response backend database-mogo DB
css
js

structure of html-navigation
aside
main
footer

box modal-content
padding
border
margin

html-hyper text markup language


it is used for structuring of web page
it is intaduced by tim berner lee-1993

tools- code editor(vs(visual studio code) code, atom, sublime, notepade)


+browser(chrome, firefox, edge, etc..)

basics.html<>
<html>
html-5
<!DOCTYPE HTML>-version 5
<html lang="en">-root element
<head>
<meta charset="UTF-8">
<meta name="author" content="sai jahnavi">
<meta name="keywords" content="HTML,CSS">
<meta name="description" content="we are learning bootstrap">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css
">
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js
"></script>
<title>Meesho App</title>
</head>

<body>

</body>

</html>

html element:opening tag+content+closing tag

heading: h1-h6
paragraph: <p> </p>
lists:
order list-<ol> </ol>
unorder list-<ul> </ul>
description list-<dl> </dl>

<ol>/type=A/a/i/I
<li> list item one</li>

<ul> /type=disc/square/circle

You might also like