Urgent.News

What's breaking now, across thousands of outlets.

Tech

Day 8: HTML Media Tags & Starting My JavaScript Journey ๐Ÿš€

1. iframe I learned about the <iframe> tag, which can be used to embed another webpage or external content inside an HTML page. 2.audio controls I learned how to add videos to a webpage using the tag. 3.video controls After learning these HTML concepts, I started learning JavaScript. JavaScript is a programming language that can make webpages interactive and dynamic. I started with JavaScriptโ€ฆ

On the eighth day of my web development journey, I continued to expand my knowledge of HTML and CSS. I discovered the iframe tag, which allows embedding external content within an HTML page. Additionally, I learned how to incorporate videos using the tag, enhancing interactivity on webpages.

Having grasped these HTML concepts, I ventured into JavaScript, a powerful programming language that brings webpages to life with interactivity and dynamism. To begin my JavaScript journey, I focused on understanding data types. Fundamental data types include:

String, as demonstrated by `let name = "Saravanan";` representing text.

Number, exemplified by `let id = 31;` assigning integer values.

Boolean, represented by `let isLearning = true;` indicating true or false values.

Undefined, exemplified by `let value;` signifying a variable without assigned value.

Null, symbolized by `let data = null;` representing an intentional absence of value.

Moreover, I also learned about BigInt, Symbol, and Object data types.

This day marked a significant milestone in my journey, as I completed several HTML and CSS concepts and embarked on my JavaScript adventure. I am enthusiastic about progressing step by step in learning JavaScript and creating even more interactive webpages.

Written by urgent.news from Dev.to's reporting โ€” not their text. Machine-written โ€” may contain errors; check the original before relying on it.

Read the original at dev.to โ†’

More in Tech

More from Friday 25 September โ†’