Sei sulla pagina 1di 10

www.nauman.com.np HTML Small Note 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 Youtube.com/kekasari4us
www.nauman.com.np HTML Small Note 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 Youtube.com/kekasari4us
www.nauman.com.np HTML Small Note 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 Youtube.com/kekasari4us
www.nauman.com.np HTML Small Note 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 Youtube.com/kekasari4us
www.nauman.com.np HTML Small Note 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 Youtube.com/kekasari4us
www.nauman.com.np HTML Small Note 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 Youtube.com/kekasari4us
www.nauman.com.np HTML Small Note 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 Youtube.com/kekasari4us
www.nauman.com.np HTML Small Note 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 Youtube.com/kekasari4us
www.nauman.com.np HTML Small Note 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 Youtube.com/kekasari4us
www.nauman.com.np HTML Small Note 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/-

www.nauman.com.np Youtube.com/kekasari4us

Potrebbero piacerti anche