0% found this document useful (0 votes)
4 views

1.what Is HTML

What is HTML
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

1.what Is HTML

What is HTML
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

1.What is HTML?

HTML stands for Hypertext Markup Language, and it's the code used to structure web
pages and their content. HTML is the basic building block of the web and defines
the meaning and structure of web content.

2.What is the difference in between semantic and non-semantic tags!


The main difference between semantic and non-semantic tags is that semantic tags
convey meaning about the content they contain, while non-semantic tags only provide
formatting and styling:

3.What is the difference in between div and Span!


We can summarize the primary differences between span vs div like this: A div tag
creates a block-level element while a <span> tag wraps around an inline element.
Additionally, the <span> tag is used to group smaller pieces of text together,
whereas div can be used to group larger ones.

4.What is attributes?
HTML attributes are special words that are used within an opening HTML tag to
modify the behavior of an element. They can be used to change the color, size, or
functionality of an element

5.What do you mean by Doctype?


The DOCTYPE is a short string of markup that follows a specific syntax and is not
an HTML tag or element. Its purpose is to ensure that different web browsers parse
the page in the same way

6.What is the use of Head?


The <head> element is a container for metadata (data about data) and is placed
between the <html> tag and the <body> tag. Metadata is data about the HTML
document. Metadata is not displayed. Metadata typically define the document title,
character set, styles, scripts, and other meta information.

7.What is Header?
An HTML header is a container for metadata and other important information that
helps structure and organize web content. It's usually placed before the content of
a web page, within the <html> tag, and enclosed within the <head> element.

8.What is CSS?
CSS is used to define styles for your web pages, including the design, layout and
variations in display for different devices and screen sizes

9.What is Display flex?


flex property enables the flexbox layout mode, allowing you to manipulate elements'
alignment, spacing, and order within a container.
10.What is the difference in between Inline and Block?

11.What is Position?

12.What is the Sudo Selector ?

13.What do you mean by @media query?

14.what is JavaScript ?

15.How to fetch HTML Element?

16.Diffrence in between Let ,Var and Const?

17.What is Data Types?

18.What do you mean by Array?

19.What do you mean by Object?

20.What is Hoisting?

21. What is Callback ?

22.Canvas vs svg in Html?

23.Box model in CSS

React :this folder contain all the libraries and dependencies installed by a npm
you don't manually edit this folder its automatically manged by the package manager

public: This folder holds static files images, icons that are needed are your
project

src: this is the main folder where all the code for your react application the
sides it usually
content :
main.jsx : the entry point of the react app this is where the react app this is
hook to the index.html by rendering into the root element

App.jsx : This is the main component of the react app its surves the and

App.css, Index.css: This is were global style for you app are define you can
customize the look of your app here...
Pakage.json: this file contains meta data about your project

Gitignore: This file which files or folder should not be track in version control

Readme: A mark down file that contain information about your project it is ussually
the first thing people see when they open your project you can explain how to
install and run the project, its purpose etc..

You might also like