Posts

Showing posts with the label HTML

HTML Basic Elements

Image
HTML Basic Elements  HTML Basic Elements : It includes HTML documents , paragraphs , headings , links, images , lists etc... HTML Documents  <!DOCTYPE html> : All HTML documents must start with a document type declaration HTML document begins with <html> and ends with </html> tag. Main part / visible part of the HTML document is between <body> and </body> tag. Program : <!DOCTYPE html> <html> <head> <title> NibKarma HTML </title> </head> <body> </body> </html> HTML Headings Headings in html are possible <h1> , <h2> , <h3> , <h4> , <h5> and <h6>. Program : <!DOCTYPE html> <html> <head> <title> NibKarma HTML </title> </head> <body> <h1> NibKarma </h1> <h2> NibKarma </h2> <h3> NibKarma </h3> <h4> NibKarma </h4> <h5> NibKarma </h5> <h6> NibKarma </h6...

HTML Head Element

Image
HTML Head Element  HTML Head Element  The <head> component is a compartment for metadata (information about information) and is put between the <html> tag and the <body> tag. HTML metadata is information about the HTML archive. Metadata isn't shown. Metadata ordinarily characterize the record title, character set, styles, contents, and other meta data. The accompanying labels depict metadata: <title>, <style>, <meta>, <link>, <script>, and <base>. The HTML <title> Element  The <title> component characterizes the title of the archive, and is required in all HTML records. The <title> component:  characterizes a title in the program tab gives a title to the page when it is added to top choices shows a title for the page in web crawler results A basic HTML report:  The HTML <style> Element The <style> component is utilized to characterize style dat...

HTML Layouts

Image
HTML Layouts  HTML Layout Elements : Sites frequently show content in numerous sections (like a magazine or paper). HTML offers a few semantic components that characterize the various pieces of a site page: HTML5 Semantic Elements  <header> - Defines a header for a record or an area <nav> - Defines a compartment for route joins <section> - Defines an area in a report <article> - Defines a free independent article <aside> - Defines content beside the substance (like a sidebar) <footer> - Defines a footer for an archive or an area <details> - Defines extra subtleties <summary> - Defines a heading for the <details> component HTML Layout Techniques  There are five distinct approaches to make multicolumn formats. Every way has its advantages and disadvantages: HTML tables  CSS drift property  CSS flexbox  CSS structure  CSS matrix  Which One to Cho...

html table

Image
HTML Table html table : Presentation  You might need to consider utilizing HTML tables in your site. Notwithstanding making HTML tables to show information in lines and sections, you can likewise make HTML tables to sort out data on your site page. The way toward making a HTML table is like the procedure that you used to make your website page and any components that you may have just incorporated into your page. for example, connections or casings. Coding HTML tables into your site page is genuinely simple since you need just comprehend a couple of fundamental table codes. Making a fundamental table  The fundamental structure of a HTML table comprises of the accompanying labels:  Table labels: <TABLE> </TABLE> Column labels: <TR> </TR> Cell labels: <TD> </TD> Developing a HTML table comprises of portraying the table between the starting table tag, <TABLE>, and the completion table tag, </TABLE...

HTML Formatting Elements

HTML Formatting Elements  HTML Formatting Elements : The HTML defines special elements for give format to a text and defining text with a special meaning. HTML uses elements like <b> and <i> for formatting output and convert to bold or italic text. Formatting elements are : <b> - Bold text <i> - Italic text <sub> - Subscript text <sup> - Superscript text <strong> - Important text <em> - Emphasized text <mark> - Marked text <small> - Small text <del> - Deleted text <ins> - Inserted text <b> - Bold text : The <b> element use to display text as bold. Here is an example: <i> - Italic text The <i> elements use for text to be displayed as italic. Here is an example: <sub> - Subscript text The <sub> elements use for text to be displayed in smaller characters (subscript). Here is an example: <sup> - Superscript text This <sup> elements use for text to be displayed in smal...

HTML AND XHTML

Image
HTML AND XHTML XHTML is HTML written as XML. What Is XHTML? XHTML stands for EXtensible HyperText Markup Language XHTML is almost identical to HTML XHTML is stricter than HTML XHTML is HTML defined as an XML application XHTML is supported by all major browsers Why XHTML? Many pages on the internet contain "bad" HTML. This HTML code works fine in most browsers (even if it does not follow the HTML rules): Today's market consists of different browser technologies. Some browsers run on computers, and some browsers run on mobile phones or other small devices. Smaller devices often lack the resources or power to interpret "bad" markup. XML is a markup language where documents must be marked up correctly (be "well-formed"). If you want to study XML, please read our XML tutorial. XHTML was developed by combining the strengths of HTML and XML. XHTML is HTML redesigned as XML. The Most Important Differences from HTML: Document Structure XHTML DOCTYPE is mandator...

Introduction To HTML Tutorial !!

Image
Introduction To HTML Tutorial !!  Introduction To HTML Tutorial : HTML is a Hypertext Markup Language. HTML is markup language for create web pages. With HTML you can create your own website. HTML is easy to learn. HTML is used for build static website. It contains predefined tags. HTML file save with .html extension. In Html every tag should be closed. HTML consists of a series of elements Tags Should Present In Every HTML File : In html file first tag should be <html> and end tag is </html>. All other tags and codes placed in between starting and ending html code. <head> - header of the title. <title> - title of the file is placed in between this tag. <body> - all heading , paragraphs and all content of the page is placed in between this tag. <h1> to <h6> are used to heading format. <p> tag are used to paragraph. And many more tags are used in html file. Let's see an example :  Program : <html> <head> <title...