Html Css js Frontend projects
9.85K subscribers
1.08K photos
138 videos
64 files
172 links
Advertisements Contact meπŸ‘‡πŸ»
@We_D5

Hello everyone you can learn interesting facts about coding in this channel πŸ’»

Perfluence
Download Telegram
Is it easy to learn programming?

- No, learning coding is not difficult. However, like anything new, it’s not easy to get started, and how difficult it is to learn coding will depend on a number of factors.

- The fact is that it is not impossible to learn coding, it will be a little difficult to get started, and you can work on it and become an expert.

πŸ‘‰ @html_css_js_projects
πŸ‘2πŸ‘1
samandar.jpg
265.9 KB
HTML TAGS
πŸ‘2πŸ‘1
<!DOCTYPE>


Definition and use
All HTML documents must begin with a <!DOCTYPE> declaration.

The declaration is not an HTML tag. This is "information" to the browser about what type of document to expect.

In HTML 5 the declaration is simple:

<!DOCTYPE html>
🀯1
<bdo>


BDO stands for Bidirectional Overlap.

The <bdo>tag is used to override the current text direction.

#html
πŸ‘3
<audio>

The <audio> tag is used to embed audio content in a document, such as music or other audio streams.

The <audio> tag contains one or more <source> tags with different audio sources. The browser will choose the first supported source.

The text between the <audio> and </audio> tags will only be displayed in browsers that do not support the <audio> element.

HTML supports three audio formats: MP3, WAV, and OGG.
πŸ‘3πŸ‘2
<aside>

The <aside> tag defines some content aside from the content it is placed in.

The aside content should be indirectly related to the surrounding content.

Tip: <aside> content is often placed in a sidebar in a document.

Note. The <aside> element is not rendered as something special in the browser. However, you can use CSS to style the <aside> element (see example below).
πŸ‘5πŸ”₯2
<area>

The <area> tag defines an area within an image map (an image map is an image with clickable areas).

<area> elements are always nested within the <map> tag.

Note. The usemap attribute of the <img> is associated with the <map> element's name attribute and creates an association between the image and the map.
❀2πŸ‘2
<address>

The <address>tag defines the contact information of the author/owner of the document or article about.

Contact information can be an email address, URL, physical address, phone number, social network ID, etc.

Text in an <address> element is usually displayed in italics, and browsers always add a line break before and after the <address> element.
πŸ‘3❀1πŸ”₯1
<abbr>

<abbr>The tag defines an abbreviation or abbreviation like "HTML", "CSS", "Mr", "Doctor", "ASAP", "ATM".

Tip: Use the global attribute to display the description of the abbreviation/acronym when you hover over the element. title
πŸ‘6🀯1🀩1
<a>


The <a>tag defines a hyperlink that is used to link from one page to another.

The most important attribute of the <a> element is the href attribute, which specifies the destination of the link.

By default, in all browsers, links will look like this:

An unvisited link is underlined in blue.
The visited link is underlined and colored purple.
The active link is underlined and red.
πŸ‘3
πŸ’ͺ Start small!

Start with a glass of water.
Start by paying off one debt.
Start by reading a single page.
Start by selling a single product.
Start by deleting an old phone number.
Start with a lap run.
Start by attending an event.
Start by writing a page.

Start today!

Repeat tomorrow!
🀯2πŸ‘1
πŸ‘6πŸ”₯1
πŸ‘2
What is React?

React is basically a library that is second only to HTML, CSS, and Javascript in web programming. βœ…

● With React JS, you can create user interfaces (UIs) and the Front End of your site. βœ…

● React is a javascript frameworki developed by Facebook. βœ…

● React can be used as a basis in the development of a one-page website or mobile applications. βœ…

● The main function of React is to display data in the DOM. βœ…
πŸ‘2
You can use this code if you want to create a window effect in CSS.

background: rgba (255, 255, 255, 0.1);
-webkit-backdrop-filter: blur (10px);
πŸ‘1
πŸ“Ί Quick buttons for watching YouTube videos

πŸ”  If you want to pause the video on YouTube, you can use the K button, the J and L keys to move the video back and forth for 10 seconds, and the M button to mute it.

⏭ 0 or Home button - to return the video to the beginning. Buttons 1 to 9 - return to 10-90% of total video time; End button - serves to jump to the end of the video.

β¬…οΈβž‘οΈ - Buttons move back / forth for 5 seconds.
⬆️⬇️ - Buttons are used to increase / decrease the volume.
The F - key displays the video as a fullscreen. The space also pauses.

@html_css_js_frontend_projects
πŸ‘2