SlideShare a Scribd company logo
1 of 10
Download to read offline
www.nauman.com.np HTML Small Note Youtube.com/kekasari4us
www.nauman.com.np Youtube.com/kekasari4us
#1) What Is HTML?
 HTML is language for describing web pages.
 HTML stands for Hyper Text Markup Language
 HTML is a Markup Language
 A markup language is a set of markup tags
 The tags describe document content
 HTML document contain HTML tags and plain text
 HTML documents are also called web pages
#1.1) HTML Editors (Use for Coding)
 Web pages can be created and modified by using
professional HTML editors.
 Like:
➔ Notepad
➔ Notepad++
➔ Brackets
➔ Sublime Text etc.
#1.2) HTML Viewers (Use for Output)
 The HTML Viewer works like most traditional Web
browsers:
 Like:
➔ Google Chrome
➔ Opera Mini
➔ IE (Internet Explorer)
➔ Mozilla Firefox
#2) What is a Tag?
 HTML markup tags are usually called HTML tag.
 HTML tags are keywords (tag names) surrounded by
angle brackets like <html>
 HTML tag normally come in pairs like: <b>and</b>
#3) What is an Attributes?
 HTML elements can have attributes
 Attributes provide additional information about an
element.
 Attributes are always specified in the start tag
www.nauman.com.np HTML Small Note Youtube.com/kekasari4us
www.nauman.com.np Youtube.com/kekasari4us
 Attributes come in name/value pairs like: name=”value”
 Attribute Example:
HTML links are defined with the <a> tag. The link
address is specified in the href attribute
<a href=”http://www.nauman.com.np”>This is a
link</a>
#4) Do all HTML tags have end tag?
 No. There are some HTML tags that don't need a closing
tag. For example: tag,
tag.
#6) What is a style sheet?
 A style sheet is used to build a consistent, transportable,
and well designed style template. You can add these
templates on several different web pages.
#7) What is a marquee?
 Marquee is used to put the scrolling text on a web page.
You should put the text which you want to scroll within
the <marquee> tag.
#8) What are empty elements?
 HTML elements with no content are called empty
elements. For example:
<br /> etc.
#9) What is the use of iframe tag?
 An iframe is used to display a web page within a web
page. Syntax:
#10) What is button tag?
 The button tag is used in HTML 5. It is used to create a
clickable button within HTML form on the web page. It is
generally used to create a "submit" or "reset" button.
#11) What does details and summary tag?
 The details tag is used to specify some additional details
on the web page. It can be viewed or hidden on demand.
The summary tag is used with details tag.
#12) What is datalist tag?
www.nauman.com.np HTML Small Note Youtube.com/kekasari4us
www.nauman.com.np Youtube.com/kekasari4us
 The HTML 5 datalist tag provides an auto complete
feature on form element. It facilitates users to choose
the predefined options.
#13) What is Website?
 A set of related web pages located under a single domain
name.
#13) What is a web page?
 A hypertext document connected to the World Wide Web.
#14) What is HTML element?
 “HTML tags” and “HTML elements” are often used to
describe the same thing.
 But strictly speaking, an HTML element is everything
between the start tag and the end tag, including the tags:
 HTML Element:
<p>This is paragraph.</p>
#15) What is the simple HTML page?
 HTML Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
This is my massage to the world!
</body>
</html>
Browser Display:
This is my massage to the world!
#16) What are HTML Headings?
 Heading are important in HTML documents.
 Heading are defined with the <h1> to <h6> tags.
 <h1> defines the most important heading.
 <h6> defines the least important heading.
#17) What is HTML Paragraphs?
 HTML documents are divided into paragraphs.
www.nauman.com.np HTML Small Note Youtube.com/kekasari4us
www.nauman.com.np Youtube.com/kekasari4us
 Paragraphs are defined with the <p> tag.
 Ex: <p> This is paragraph</p>
#18) What is a HTML lines?
 The <hr> tag creates a horizontal line in an HTML page.
 The hr element can be used to separate content.
#19) Define URL?
 Uniform Resource Locator, An address that specifies the
location of a file on the internet.
#20) Dose HTML is case sensitive?
 No, it is not case sensitive.
#21) How can we resize the image?
 Using height and width.
#22) What is an iframe in HTML?
 An iframe is used to display a web page within a web page.
 Syntax: <iframe src=”URL”></iframe>
#23) What is a <frameset> tag?
 The <frameset> tag defines a frameset.
 The <frameset> element holds one or more <frame>
element.
 Each <frame> element can hold a separate document.
 Syntax: <frameset cols=”25%,25%”>
<frame src=”frame1.html” />
<frame src=”frame2.html” />
</frameset>
#24) Define Hypertext link?
 The special tag linking one page to other resource or a
page is known as hypertext link.
 If you click the link then the browser jumps to the
destination link.
#25) What is a Hyperlinks?
 The HTML <a> tag defines a hyperlink.
 A hyperlink (or link) is a word, group of words, or image
that you can click on to jump to another document.
 Syntax: <a href=”URL”>link</a>
#26) Defining an HTML Table
 An HTML table is defined with the <table> tag.
 Each table row is defined with the <tr> tag. A table
header is defined with the <th> tag. By default, table
www.nauman.com.np HTML Small Note Youtube.com/kekasari4us
www.nauman.com.np Youtube.com/kekasari4us
headings are bold and centered. A table data/cell is
defined with the <td> tag.
#27) What is a HTML forms?
 HTML forms are used to pass data to a server.
 The <form> tag is used to create an HTML form:
<form>
Input elements
</form>
#28) What is a Input Element?
 The most important form element is the <input>
element.
 The <input> element is used to select user information.
 Syntax: <input type=”text” />
#29) HTML Comment Tags
 You can add comments to your HTML source by using the
following syntax:
<!-- Write your comments here -->
#30) HTML Images
 Images can improve the design and the appearance of a
web page.
<img src="pic_trulli.jpg" alt="Italian Trulli">
About Us
Name: Md. Nauman
Address: Inaruwa 02 sunsari Nepal
Website: www.nauman.com.np
E-Mail: naumanmiya@gmail.com
Mobile: +977 9816311112
College: Allen College of Engineering Pvt. Ltd.
Inaruwa 01 Sunsari Nepal
www.nauman.com.np HTML Small Note Youtube.com/kekasari4us
www.nauman.com.np Youtube.com/kekasari4us
Our Team Members: Krishna Thakur, Om Narayan Sah and Our
Supporter
#31) HTML Lists
 HTML lists are used to group related pieces of
information together.
Understanding HTML Lists
HTML lists are used to present list of information in well formed
and semantic way. There are three different types of list in
HTML and each one has a specific purpose and meaning:
• Unordered list — Used to group a set of related items, in no
particular order.
• Ordered list — Used to group a set of related items, in a
specific order.
• Description list — Used to display a list of terms and their
descriptions.
#32) Define video
 The <video> tag specifies video, such as a movie clip
or other video streams.
 Syntax:
<video width="320" height="240" controls>
<source src="videoFileName.mp4"
type="video/mp4">
<source src="videoFileName.mp4"
type="video/ogg">
</video>
#33) Define audio
 The <audio> tag defines sound, such as music or
otheraudio streams.
 Syntax:
<audio controls>
<source src="audio.mp3" type="audio/ogg">
<source src="audio.mp3" type="audio/mpeg">
</audio>
www.nauman.com.np HTML Small Note Youtube.com/kekasari4us
www.nauman.com.np Youtube.com/kekasari4us
#34) HTML Formatting Elements
 Formatting elements were designed to display special
types of text:
• <b> - Bold text
• <strong> - Important text
• <i> - Italic text
• <em> - Emphasized text
• <mark> - Marked text
• <small> - Small text
• <del> - Deleted text
• <ins> - Inserted text
• <sub> - Subscript text
• <sup> - Superscript text
#35) Definition a textarea
 The <textarea> tag defines a multi-line text input
control.
#36) Definition a Div
 The <div> tag defines a division or a section in an HTML
document.
#37) Definition a Select Option
 The <select> element is used to create a drop-down list.
 The <option> tags inside the <select> element define
the available options in the list.
#38) Define a Class
 The class attribute specifies one or more classnames for
an element.
 The class attribute is mostly used to point to a class in
a style sheet.
 Syntax:
<p class=”paragraph”>This is a paragraph</p>
#39) Define HTTP
www.nauman.com.np HTML Small Note Youtube.com/kekasari4us
www.nauman.com.np Youtube.com/kekasari4us
 HTTP means HyperText Transfer Protocol. HTTP is the
underlying protocol used by the World Wide Web and this
protocol defines how messages are formatted and
transmitted, and what actions Web servers and browsers
should take in response to various commands.
#40) Define HTTPS
 Hyper Text Transfer Protocol Secure (HTTPS) is the
secure version of HTTP, the protocol over which data is
sent between your browser and the website that you are
connected to. The 'S' at the end of HTTPS stands for
'Secure'. It means all communications between your
browser and the website are encrypted.
#41) What is the SRC?
 SRC stands for generally Source code file.
#42) why are webinars important?
 They allow marketers to engage with customers and
prospects on a large scale and provide a way for
businesses of any size to be themselves and build a true
connection with their audience, making it that much
easier to build lasting relationships.
#43) Define WordPress
 WordPress is free, open source publishing software that
can be installed locally on a web server and viewed on a
proprietary web site or hosted in the cloud and viewed on
the WordPress web site.
#44) What is the use of word press?
 WordPress is, by far, the most popular open source
Content Management System (CMS), used by
approximately 75 million websites. WordPress is free to
install, deploy, and upgrade. Thousands of plugins and
templates power a flexible and simple interface, which
reduces development costs and deployment time.
#45) Define Domain name
 A domain name is an identification string that defines a
realm of administrative autonomy, authority or control
within the Internet. Domain names are formed by the
www.nauman.com.np HTML Small Note Youtube.com/kekasari4us
www.nauman.com.np Youtube.com/kekasari4us
rules and procedures of the Domain Name System. Any
name registered in the DNS is a domain name
#46) Define hosting in website
 A web host, or web hosting service provider, is a
business that provides the technologies and services
needed for the website or webpage to be viewed in the
Internet. Websites are hosted, or stored, on special
computers called servers. ... If you do not have a domain,
the hosting companies will help you purchase one.
#47) Define Internet
 A global computer network providing a variety of
information and communication facilities, consisting of
interconnected networks using standardized
communication protocols.
#48) Define technology
 The application of scientific knowledge for practical
purposes, especially in industry.
"advances in computer technology"
 Machinery and devices developed from scientific
knowledge.
"it will reduce the industry's ability to spend money on
new technology"
 The branch of knowledge dealing with engineering or
applied sciences.
#49) Information Technology (IT)
 Information technology is the use of computers to store,
retrieve, transmit, and manipulate data, or information,
often in the context of a business or other enterprise. IT
is considered to be a subset of information and
communications technology.
#50) What is the IT field?
 Information Technology fields most commonly refer to
higher education (HE) disciplines where the student
studies toward a recognized certificate, diploma or
degree. Computer Engineering is a specialized
Information Technology field of study. ... A key
www.nauman.com.np HTML Small Note Youtube.com/kekasari4us
www.nauman.com.np Youtube.com/kekasari4us
Information Technology sector is the Software and
Services sector.
#51) Uses of Information Technology
 Information Technology is any computer-based tool
used to work with information and support
the information -processing need of an organization. ...
In this age ofinformation technology, a business can
gain the competitive advantage when it uses
information technology to its maximum.
About Us
Name: Md. Nauman
Address: Inaruwa 02 sunsari Nepal
Website: www.nauman.com.np
E-Mail: naumanmiya@gmail.com
Mobile: +977 9816311112
College: Allen College of Engineering Pvt. Ltd.
Inaruwa 01 Sunsari Nepal
Our Team Members: Krishna Thakur, Om Narayan Sah and Our
Supporter
Best of Luck Rs: 50/-

More Related Content

What's hot (17)

HTML5 and DHTML
HTML5 and DHTMLHTML5 and DHTML
HTML5 and DHTML
 
Html basics NOTE
Html basics NOTEHtml basics NOTE
Html basics NOTE
 
INTRODUCTION TO HTML
INTRODUCTION TO HTMLINTRODUCTION TO HTML
INTRODUCTION TO HTML
 
Html presantation
Html presantationHtml presantation
Html presantation
 
Html for beginners part I
Html for beginners part IHtml for beginners part I
Html for beginners part I
 
Twitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive OverviewTwitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive Overview
 
Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]
 
The Difference between HTML, XHTML & HTML5 for Beginners
The Difference between HTML, XHTML & HTML5 for BeginnersThe Difference between HTML, XHTML & HTML5 for Beginners
The Difference between HTML, XHTML & HTML5 for Beginners
 
Html ppt computer
Html ppt computerHtml ppt computer
Html ppt computer
 
Standard html tags
Standard html tagsStandard html tags
Standard html tags
 
HTML Basics by software development company india
HTML Basics by software development company indiaHTML Basics by software development company india
HTML Basics by software development company india
 
Introduction to HTML
Introduction to HTML Introduction to HTML
Introduction to HTML
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
 
CSS Comprehensive Overview
CSS Comprehensive OverviewCSS Comprehensive Overview
CSS Comprehensive Overview
 
WEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTMLWEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTML
 
Html basics
Html basicsHtml basics
Html basics
 
Html basics
Html basicsHtml basics
Html basics
 

Similar to Html b smart

PHP Training in Chandigarh
PHP Training in ChandigarhPHP Training in Chandigarh
PHP Training in ChandigarhWebcom Incorp
 
web unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptxweb unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptxChan24811
 
WT Module-1.pdf
WT Module-1.pdfWT Module-1.pdf
WT Module-1.pdfRamyaH11
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).pptMarktero2
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.pptSri Latha
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).pptF3ZONE1
 
introdution-to-html.ppt NJBJGHGJHGGJGJG
introdution-to-html.ppt  NJBJGHGJHGGJGJGintrodution-to-html.ppt  NJBJGHGJHGGJGJG
introdution-to-html.ppt NJBJGHGJHGGJGJGAMRITHA16
 
introdution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbeintrodution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbeJamaicaCabrales
 

Similar to Html b smart (20)

Iwt module 1
Iwt  module 1Iwt  module 1
Iwt module 1
 
Html-meeting1-1.pptx
Html-meeting1-1.pptxHtml-meeting1-1.pptx
Html-meeting1-1.pptx
 
PHP Training in Chandigarh
PHP Training in ChandigarhPHP Training in Chandigarh
PHP Training in Chandigarh
 
Introduction to HTML.pptx
Introduction to HTML.pptxIntroduction to HTML.pptx
Introduction to HTML.pptx
 
Html
HtmlHtml
Html
 
Html5 css3
Html5 css3Html5 css3
Html5 css3
 
Chapter2
Chapter2Chapter2
Chapter2
 
web unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptxweb unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptx
 
WT Module-1.pdf
WT Module-1.pdfWT Module-1.pdf
WT Module-1.pdf
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).ppt
 
HTML 5
HTML 5HTML 5
HTML 5
 
Html basics
Html basicsHtml basics
Html basics
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
summary html.ppt
summary html.pptsummary html.ppt
summary html.ppt
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).ppt
 
introdution-to-html.ppt NJBJGHGJHGGJGJG
introdution-to-html.ppt  NJBJGHGJHGGJGJGintrodution-to-html.ppt  NJBJGHGJHGGJGJG
introdution-to-html.ppt NJBJGHGJHGGJGJG
 
html.pptx
html.pptxhtml.pptx
html.pptx
 
introdution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbeintrodution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbe
 

Recently uploaded

Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.arsicmarija21
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........LeaCamillePacle
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 

Html b smart

  • 1. www.nauman.com.np HTML Small Note Youtube.com/kekasari4us www.nauman.com.np Youtube.com/kekasari4us #1) What Is HTML?  HTML is language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is a Markup Language  A markup language is a set of markup tags  The tags describe document content  HTML document contain HTML tags and plain text  HTML documents are also called web pages #1.1) HTML Editors (Use for Coding)  Web pages can be created and modified by using professional HTML editors.  Like: ➔ Notepad ➔ Notepad++ ➔ Brackets ➔ Sublime Text etc. #1.2) HTML Viewers (Use for Output)  The HTML Viewer works like most traditional Web browsers:  Like: ➔ Google Chrome ➔ Opera Mini ➔ IE (Internet Explorer) ➔ Mozilla Firefox #2) What is a Tag?  HTML markup tags are usually called HTML tag.  HTML tags are keywords (tag names) surrounded by angle brackets like <html>  HTML tag normally come in pairs like: <b>and</b> #3) What is an Attributes?  HTML elements can have attributes  Attributes provide additional information about an element.  Attributes are always specified in the start tag
  • 2. www.nauman.com.np HTML Small Note Youtube.com/kekasari4us www.nauman.com.np Youtube.com/kekasari4us  Attributes come in name/value pairs like: name=”value”  Attribute Example: HTML links are defined with the <a> tag. The link address is specified in the href attribute <a href=”http://www.nauman.com.np”>This is a link</a> #4) Do all HTML tags have end tag?  No. There are some HTML tags that don't need a closing tag. For example: tag, tag. #6) What is a style sheet?  A style sheet is used to build a consistent, transportable, and well designed style template. You can add these templates on several different web pages. #7) What is a marquee?  Marquee is used to put the scrolling text on a web page. You should put the text which you want to scroll within the <marquee> tag. #8) What are empty elements?  HTML elements with no content are called empty elements. For example: <br /> etc. #9) What is the use of iframe tag?  An iframe is used to display a web page within a web page. Syntax: #10) What is button tag?  The button tag is used in HTML 5. It is used to create a clickable button within HTML form on the web page. It is generally used to create a "submit" or "reset" button. #11) What does details and summary tag?  The details tag is used to specify some additional details on the web page. It can be viewed or hidden on demand. The summary tag is used with details tag. #12) What is datalist tag?
  • 3. www.nauman.com.np HTML Small Note Youtube.com/kekasari4us www.nauman.com.np Youtube.com/kekasari4us  The HTML 5 datalist tag provides an auto complete feature on form element. It facilitates users to choose the predefined options. #13) What is Website?  A set of related web pages located under a single domain name. #13) What is a web page?  A hypertext document connected to the World Wide Web. #14) What is HTML element?  “HTML tags” and “HTML elements” are often used to describe the same thing.  But strictly speaking, an HTML element is everything between the start tag and the end tag, including the tags:  HTML Element: <p>This is paragraph.</p> #15) What is the simple HTML page?  HTML Code: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> This is my massage to the world! </body> </html> Browser Display: This is my massage to the world! #16) What are HTML Headings?  Heading are important in HTML documents.  Heading are defined with the <h1> to <h6> tags.  <h1> defines the most important heading.  <h6> defines the least important heading. #17) What is HTML Paragraphs?  HTML documents are divided into paragraphs.
  • 4. www.nauman.com.np HTML Small Note Youtube.com/kekasari4us www.nauman.com.np Youtube.com/kekasari4us  Paragraphs are defined with the <p> tag.  Ex: <p> This is paragraph</p> #18) What is a HTML lines?  The <hr> tag creates a horizontal line in an HTML page.  The hr element can be used to separate content. #19) Define URL?  Uniform Resource Locator, An address that specifies the location of a file on the internet. #20) Dose HTML is case sensitive?  No, it is not case sensitive. #21) How can we resize the image?  Using height and width. #22) What is an iframe in HTML?  An iframe is used to display a web page within a web page.  Syntax: <iframe src=”URL”></iframe> #23) What is a <frameset> tag?  The <frameset> tag defines a frameset.  The <frameset> element holds one or more <frame> element.  Each <frame> element can hold a separate document.  Syntax: <frameset cols=”25%,25%”> <frame src=”frame1.html” /> <frame src=”frame2.html” /> </frameset> #24) Define Hypertext link?  The special tag linking one page to other resource or a page is known as hypertext link.  If you click the link then the browser jumps to the destination link. #25) What is a Hyperlinks?  The HTML <a> tag defines a hyperlink.  A hyperlink (or link) is a word, group of words, or image that you can click on to jump to another document.  Syntax: <a href=”URL”>link</a> #26) Defining an HTML Table  An HTML table is defined with the <table> tag.  Each table row is defined with the <tr> tag. A table header is defined with the <th> tag. By default, table
  • 5. www.nauman.com.np HTML Small Note Youtube.com/kekasari4us www.nauman.com.np Youtube.com/kekasari4us headings are bold and centered. A table data/cell is defined with the <td> tag. #27) What is a HTML forms?  HTML forms are used to pass data to a server.  The <form> tag is used to create an HTML form: <form> Input elements </form> #28) What is a Input Element?  The most important form element is the <input> element.  The <input> element is used to select user information.  Syntax: <input type=”text” /> #29) HTML Comment Tags  You can add comments to your HTML source by using the following syntax: <!-- Write your comments here --> #30) HTML Images  Images can improve the design and the appearance of a web page. <img src="pic_trulli.jpg" alt="Italian Trulli"> About Us Name: Md. Nauman Address: Inaruwa 02 sunsari Nepal Website: www.nauman.com.np E-Mail: naumanmiya@gmail.com Mobile: +977 9816311112 College: Allen College of Engineering Pvt. Ltd. Inaruwa 01 Sunsari Nepal
  • 6. www.nauman.com.np HTML Small Note Youtube.com/kekasari4us www.nauman.com.np Youtube.com/kekasari4us Our Team Members: Krishna Thakur, Om Narayan Sah and Our Supporter #31) HTML Lists  HTML lists are used to group related pieces of information together. Understanding HTML Lists HTML lists are used to present list of information in well formed and semantic way. There are three different types of list in HTML and each one has a specific purpose and meaning: • Unordered list — Used to group a set of related items, in no particular order. • Ordered list — Used to group a set of related items, in a specific order. • Description list — Used to display a list of terms and their descriptions. #32) Define video  The <video> tag specifies video, such as a movie clip or other video streams.  Syntax: <video width="320" height="240" controls> <source src="videoFileName.mp4" type="video/mp4"> <source src="videoFileName.mp4" type="video/ogg"> </video> #33) Define audio  The <audio> tag defines sound, such as music or otheraudio streams.  Syntax: <audio controls> <source src="audio.mp3" type="audio/ogg"> <source src="audio.mp3" type="audio/mpeg"> </audio>
  • 7. www.nauman.com.np HTML Small Note Youtube.com/kekasari4us www.nauman.com.np Youtube.com/kekasari4us #34) HTML Formatting Elements  Formatting elements were designed to display special types of text: • <b> - Bold text • <strong> - Important text • <i> - Italic text • <em> - Emphasized text • <mark> - Marked text • <small> - Small text • <del> - Deleted text • <ins> - Inserted text • <sub> - Subscript text • <sup> - Superscript text #35) Definition a textarea  The <textarea> tag defines a multi-line text input control. #36) Definition a Div  The <div> tag defines a division or a section in an HTML document. #37) Definition a Select Option  The <select> element is used to create a drop-down list.  The <option> tags inside the <select> element define the available options in the list. #38) Define a Class  The class attribute specifies one or more classnames for an element.  The class attribute is mostly used to point to a class in a style sheet.  Syntax: <p class=”paragraph”>This is a paragraph</p> #39) Define HTTP
  • 8. www.nauman.com.np HTML Small Note Youtube.com/kekasari4us www.nauman.com.np Youtube.com/kekasari4us  HTTP means HyperText Transfer Protocol. HTTP is the underlying protocol used by the World Wide Web and this protocol defines how messages are formatted and transmitted, and what actions Web servers and browsers should take in response to various commands. #40) Define HTTPS  Hyper Text Transfer Protocol Secure (HTTPS) is the secure version of HTTP, the protocol over which data is sent between your browser and the website that you are connected to. The 'S' at the end of HTTPS stands for 'Secure'. It means all communications between your browser and the website are encrypted. #41) What is the SRC?  SRC stands for generally Source code file. #42) why are webinars important?  They allow marketers to engage with customers and prospects on a large scale and provide a way for businesses of any size to be themselves and build a true connection with their audience, making it that much easier to build lasting relationships. #43) Define WordPress  WordPress is free, open source publishing software that can be installed locally on a web server and viewed on a proprietary web site or hosted in the cloud and viewed on the WordPress web site. #44) What is the use of word press?  WordPress is, by far, the most popular open source Content Management System (CMS), used by approximately 75 million websites. WordPress is free to install, deploy, and upgrade. Thousands of plugins and templates power a flexible and simple interface, which reduces development costs and deployment time. #45) Define Domain name  A domain name is an identification string that defines a realm of administrative autonomy, authority or control within the Internet. Domain names are formed by the
  • 9. www.nauman.com.np HTML Small Note Youtube.com/kekasari4us www.nauman.com.np Youtube.com/kekasari4us rules and procedures of the Domain Name System. Any name registered in the DNS is a domain name #46) Define hosting in website  A web host, or web hosting service provider, is a business that provides the technologies and services needed for the website or webpage to be viewed in the Internet. Websites are hosted, or stored, on special computers called servers. ... If you do not have a domain, the hosting companies will help you purchase one. #47) Define Internet  A global computer network providing a variety of information and communication facilities, consisting of interconnected networks using standardized communication protocols. #48) Define technology  The application of scientific knowledge for practical purposes, especially in industry. "advances in computer technology"  Machinery and devices developed from scientific knowledge. "it will reduce the industry's ability to spend money on new technology"  The branch of knowledge dealing with engineering or applied sciences. #49) Information Technology (IT)  Information technology is the use of computers to store, retrieve, transmit, and manipulate data, or information, often in the context of a business or other enterprise. IT is considered to be a subset of information and communications technology. #50) What is the IT field?  Information Technology fields most commonly refer to higher education (HE) disciplines where the student studies toward a recognized certificate, diploma or degree. Computer Engineering is a specialized Information Technology field of study. ... A key
  • 10. www.nauman.com.np HTML Small Note Youtube.com/kekasari4us www.nauman.com.np Youtube.com/kekasari4us Information Technology sector is the Software and Services sector. #51) Uses of Information Technology  Information Technology is any computer-based tool used to work with information and support the information -processing need of an organization. ... In this age ofinformation technology, a business can gain the competitive advantage when it uses information technology to its maximum. About Us Name: Md. Nauman Address: Inaruwa 02 sunsari Nepal Website: www.nauman.com.np E-Mail: naumanmiya@gmail.com Mobile: +977 9816311112 College: Allen College of Engineering Pvt. Ltd. Inaruwa 01 Sunsari Nepal Our Team Members: Krishna Thakur, Om Narayan Sah and Our Supporter Best of Luck Rs: 50/-