Skip to main content

Posts

Showing posts from October, 2020

LINKS

 Links links are very useful for us. they allows us to move one page to another page. it will make a better experience for user. <a> Links are created with <a> tag element . Users can click Anything between the opening and closing</a> tag. We can specify which page we want to link with href attribution. Linking to Other Website <a href="https://www.wikipedia.org">Wikipedia Home</a> Linking page on  same website <a href="index.html">Home</a> Email Link <a href="mailto:sagar@sagarved.com">Email To Sagar</a> Opening Links in a New Window Target  <a href="google.com" target="_blank">Google Home</a> Linking To a Specific Part in a Same Page To achieve this we  use I'd'. For referencing  A id element we use # and followed by link . <a href="#contact">Contact</a> Linking to a Specific part on Another Page If we want to link a specific part then we r

Summary of Lists

 Summary of Lists There are three types of HTML lists: ordered, unordered, and definition. Ordered lists use numbers. Unordered lists use bullets. Definition lists are used to define terminology. Lists can be nested inside one another. Example Code Thanks for reading this blog.

lists

 HTML Provides Three Types of Lists . Ordered List - Ordered list are lists where each item in the list is numbered. Unordered List - Unordered lists that begin with a bullet point. Definition List - Definition Lists are made up a set of terms along with the definition for each of those terms.  Ordered Lists <ol> The Ordered list is created with <ol> element. <li> each item in the list is palaced between opening <li> tag and closing </li> tag. <li> stands for list items. Browsers indent lists by default. Unordered List <ul> The Unordered list is created with <ul> element. <li> each item in the list is palaced between opening <li> tag and closing </li> tag. <li> stands for list items. Browsers indent lists by default. Definition list <dl> The definition list is created with <dl> element. inside <dl> element we use <dt> and <dd> elements. <dt> This is used to contain the term being

Summary of Text

We are understanding about text. In text we have learnt about how to use headings , paragraphs, How to BOLD , Italic, How to Superscript and subscript and how to creat Line breaks. In sementic  Markups we study strong and emphasis, quotation,abbreviation&Acronyms , Citation and definations , Author's Address and change in content. Here i attached a page . The Code The HTML Page Thank you for coming Here . For practing this you can choose Wikipedia pages.

SEMANTIC MARKUPS

These are  some text element that are intended to affect the structure of your page , but they add extra information to the pages-they are known as Semantic markup. 1. STRONG AND EMPHASIS <strong> The Use of the  <strong> element indicates that its content has strong importance. Browsers show <strong> element in "Bold" By Default. <em> The <em> element indicates emphasis that subtly changes the meaning of sentence. Browsers show <em> element in "Italic" By Default. 2. Quotation These are the two type of quotations <Blockquote> The <blockquote> element is used for or longer quotes that takes up an entire paragraph. <q> The <q> element is used for shorter quotes that sit within a paragraph browsers are supposed to quotes around the q element. 3. Abbreviations & Acronyms <abbr> If you use an abbreviations or an acronyms , then the <abbr> element can be used. A title attiribute on the opening ta