RKRajesh Kumar Barikinrajeshkbarik.hashnode.dev·Jul 28, 2023 · 2 min readAudio Tag And Video TagAudio Tag The <audio> tag specifies a standard way to insert an audio file into a web page. It can be used in any format like mp3,ogg,wav, etc Syntax: <audio> <source src=" sample.mp3" type="audio"/> </audio> Attributes: Controls: Defines what contr...00
RKRajesh Kumar Barikinrajeshkbarik.hashnode.dev·Jul 28, 2023 · 2 min readInput ElementsThe <input> element is used where the user can enter data. The input tag is used within < form> element. Example: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=...00
RKRajesh Kumar Barikinrajeshkbarik.hashnode.dev·Jul 28, 2023 · 1 min readHTML ElementsAn HTML file is made of elements. These elements are responsible for creating web pages and defining content on that webpage. HTML Elements: It consists of 3parts. Opening tag: It is used to tell the browser where the content material starts. Closi...00
RKRajesh Kumar Barikinrajeshkbarik.hashnode.dev·Jul 7, 2023 · 2 min readWeb ServerThe web server provides an environment to run only web applications. (Web application- it is software that runs in web browsers.) (Web Browsers- That is a kind of software application used to access information on the World Wide Web.When a user reque...00