Learn Html
355 subscribers
101 photos
2 videos
34 files
263 links
All info and tutorial of Html
For HTML: @html_web_learn
For CSS: @CSS_web_learn
For JS: @JavaScript_js_learn
For PHP: @learn_php_web
For Programming courses @Programmingworld_dev
For CEH,Cybersec: @CyberPunk_anonymous
Download Telegram
Simple HTML questions for beginners:

1) What is HTML
?

HTML stands for Hyper Text Markup Language. It is a language of World Wide Web. It is a standard text formatting language which is used to create and display pages on the Web. It makes the text more interactive and dynamic. It can turn text into images, tables, links.


2) What are Ta
gs?

HTML tags are composed of three things: an opening tag, content and ending tag. Some tags are unclosed tags.

HTML documents contain two things: content and tags

When a web browser reads an HTML document, the browser reads it from top to bottom and left to right. HTML tags are used to create HTML documents and render their properties. Each HTML tags have different properties.

<tag> content </tag>


3) Do all HTML tags have an end
tag?

No. There are some HTML tags that don't need a closing tag. For example: <image> tag, <br> tag.


4) What is formatting i
n HTML?

The HTML formatting is a process of format the text for a better look and feel. It uses different tags to make text bold, italicized, underlined.
More details.



5) How many types of heading does an HTM
L contain?

The HTML contains six types of headings which are defined with the <h1> to <h6> tags. Each type of heading tag displays different text size from another. So, <h1> is the largest heading tag and <h6> is the smallest one. For example:
<h1>Heading no. 1</h1>
<h2>Heading no. 2</h2>
<h3>Heading no. 3</h3>
<h4>Heading no. 4</h4>
<h5>Heading no. 5</h5>
<h6>Heading no. 6</h6>
More details.
6) How to create a hyperlink in HTML?

The HTML provides an anchor tag to create a hyperlink that links one page to another page. These tags can appear in any of the following ways:

* Unvisited link - It is displayed, underlined and blue.
* Visited link - It is displayed, underlined and purple.
* Active link - It is displayed, underlined and red.


7) Which HTML tag is used to display the data in the tabular form?

The HTML table tag is used to display data in tabular form (row * column). It also manages the layout of the page, e.g., header section, navigation bar, body content, footer section.


8) What are some common lists that are used when designing a pag
e?

There are many common lists which are used to design a page. You can choose any or a combination of the following list types:

* Ordered list - The ordered list displays elements in numbered format. It is represented b
y <o
l> tag.
* Unordered list - The unordered list displays elements in bulleted format. It is represented b
y <u
l> tag.
* Definition list - The definition list displays elements in definition form like in dictionary. Th
e <d
l>
, <dt
> a
nd <d
d> tags are used to define description list.


9) What is the difference between HTML elements and tag
s?

HTML elements communicate to the browser to render text. When the elements are enclosed by brackets <>, they form HTML tags. Most of the time, tags come in a pair and surround content.


10) What is semantic H
TML?

Semantic HTML is a coding style. It is the use of HTML markup to reinforce the semantics or meaning of the content. For example: In semantic H
TML <b> <
/b> tag is not used for bold statement as well as <i> </i> tag is used for italic. Instead of these we
use <strong></stro
ng>
and <em><
/em> tags.
Google- Interview Warmup

This tool will help you to prepare for your interview in any field.

Google will ask a series of
questions and you have to answer them according to you.


Google will help you to review your Answers by pointing out mistakes like grammatical or language errors.

Moreover, Google will also help you to find out the convincing points in your answers.

https://grow.google/certificates/interview-warmup/
Exercise from Dcode on creating text on HTML5 Canvas using JavaScript

https://youtu.be/S84lj4O0Ams

#dcode #canvas #text‌‌
Introducing Dev Patterns. A service containing a reference list of design patterns for modern and more structured web applications

https://www.patterns.dev/

#pattern #design #dev
🔵Top 5 html books

Follow
@coderblast