Devstartheblog.hashnode.dev·Jan 31, 2023Selectors...Simple Selectors Universal Selector. Element Selector. Class Selector. ID Selector. Selector list. Universal The CSS universal selector (*) matches elements of any type. (isse universal selectors kehte h, jo html file/documnet ke saare tag ko ...chai_piyo
Devstartheblog.hashnode.dev·Jan 30, 2023Intro to CSS...CSS is the language we use to style an HTML document. CSS describes how HTML elements should be displayed. Html is such a structure of a web page and css is used to give style to a web page. There are three types of CSS: Inline CSS. Internal or Em...31 readschai_piyo
Devstartheblog.hashnode.dev·Jan 29, 2023HTML Proj_1This is a simple demo how html looks like without css and js. code: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, in...30 readschai_piyo
Devstartheblog.hashnode.dev·Jan 28, 2023Basic HTML...33. What is the difference between cell spacing & cell padding? -The distance or gap between two cells in the same table is called cell spacing. Cell Padding is defined as the gap or space between the cell’s content and the cell wall or cell border. ...chai_piyo
Devstartheblog.hashnode.dev·Jan 27, 2023Basic HTML ...1. What is HTML? -HTML, also termed Hyper Text Markup Language is a language used on the World Wide Web. It is a common text formatting language utilized for designing and displaying web pages. Today, text can become more dynamic and interactive bec...chai_piyo
Devstartheblog.hashnode.dev·Jan 26, 2023HTML part_5...An HTML form is used to collect user input. The user input is most often sent to a server for processing. ex: sample how to write form in html <form action=""> </form> Some examples: <form action=""> // <!-- The action attribute sp...49 readschai_piyo
Devstartheblog.hashnode.dev·Jan 25, 2023HTML part_4...HTML v/s HTML5 HTML uses browser cache memory as temporary storage. HTML5 offers multiple storage options, such as an SQL database, application cache, and web storage. Points of HTML : No support for audio and video. Does not have any standard proc...35 readschai_piyo
Devstartheblog.hashnode.dev·Jan 24, 2023HTML Part_3...Video Tag The <video> tag is used to embed video content in a document, such as a movie clip or other video streams. <!-- <video src="video Address"></video> --> // <!-- // src -> path of video from local system or from the other web site ...37 readschai_piyo
Devstartheblog.hashnode.dev·Jan 23, 2023HTML part_2 Inline Vs Block Element...Block Element A block-level element always starts on a new line, and the browsers automatically add some space before and after the element. A block-level element always takes up the full width available. Two commonly used block elements are: <p> and...chai_piyo
Devstartheblog.hashnode.dev·Jan 22, 2023HTML part_1..Heading in HTML is used to give heading in webpage <h1>This is heading Tag</h1> <h2>This is heading Tag</h2> <h3>This is heading Tag</h3> <h4>This is heading Tag</h4> <h5>This is heading Tag</h5> <h6>This is heading Tag</h6> ...46 readschai_piyo