CSS GridCSS Grid Layout Module <!DOCTYPE html> <html> <head> <style> .item1 { grid-area: header; } .item2 { grid-area: menu; } .item3 { grid-area: main; } .item4 { grid-area: right; } .item5 { grid-area: footer; } .grid-container { display: grid; grid-...May 30, 2023·2 min read
Audio and Video TagHTML Video Tag HTML 5 supports <video> tag also. The HTML video tag is used for streaming video files such as a movie clip, song clip on the web page. Currently, there are three video formats supported for HTML video tag: mp4 webM ogg note :- An...Dec 27, 2022·1 min read
Input ElementsThe <input> HTML element is used to create interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent. The <input> el...Dec 27, 2022·1 min read
Html ElementAn HTML file is made of elements. These elements are responsible for creating web pages and define content in that webpage. An element in HTML usually consist of a start tag <tag name>, close tag </tag name> and content inserted between them. Technic...Dec 27, 2022·3 min read
web serverThe term web server can refer to hardware or software, or both of them working together. On the hardware side, a web server is a computer that stores web server software and a website's component files (for example, HTML documents, images, CSS styles...Dec 27, 2022·2 min read