DEV Community

Saravanan Cn
Saravanan Cn

Posted on

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

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 data types.

Some of the basic data types I learned are:

String
Number
Boolean
Undefined
Null
BigInt
Symbol
Object

For example:

let name = "Saravanan"; // String
let id = 31; // Number
let isLearning = true; // Boolean
let value; // Undefined
let data = null; // Null

Today was an important step because I completed several HTML and CSS concepts and have now started my JavaScript journey.

I'm excited to learn JavaScript step by step and build more interactive webpages. 🚀

html #javascript #webdevelopment #beginners

Top comments (0)