***Example of basic structure of html*** * <DOCTYPE html> * <html> * <head> * <title>ABCD</title> * </head> * <body> * <h1>This is a heading</h1> * <p> This is a paragraph</p> * </body> * </html> **Example Explained** The <!DOCTYPE html> affirmation characterizes that this file is a HTML5 file. The <html> tag is the root tag of a HTML page. The <head> tag contains meta data about the HTML page. The <title> tag indicates a title for the HTML page (which is displayed in the program’s title bar or the page’s tab). The <body> tag characterizes the document’s body, and is a container for every one of the noticeable substance, like headings, passages, pictures, hyperlinks, tables, records, and so forth. The <h1> tag characterizes a huge heading. The <p> tag characterizes a section. HTML structure https://ahrafcode.com/html-introduction/ (https://ahrafcode.com/ht
HTML represents HyperText Markup Language HTML is the standard markup language for making Web pages HTML depicts the design of a Web page HTML comprises of a progression of elements HTML elements advise the program how to show the content HTML elements mark bits of substance, for example, “this is a heading”, “this is a section”, “this is a connection”, and so forth HTML is used in any editor like Notepad. Also, another programming like Adobe Dreamweaver, Sublime, NetBeans, Notepad ++, and so on, are mainly used for writing and editing HTML. “.html” or “.htm” are the two expansions used to compose and save HTML records; we can compose HTML code in any content manager and save it as “filename.html” or “filename.htm”. Know more about HTML .
CSS means castcading style sheet and it is utilized for designing website pages. CSS works with HTML as it were. HTML is just a Markup language, we can use attributes and value in tags, however, it’s not eligible for making an attractive website design. The World Wide Web Consortium (W3C) has made CSS to solve this issue. In HTML 4.0, everything designing could be removed out from the HTML file page and put away in a safe CSS file.Today all internet browsers are supporting CSS. Learn all about CSS ahrafcode.com