संदेश

जून, 2019 की पोस्ट दिखाई जा रही हैं

HTML Paragraphs tages 06

चित्र
                      HTML Paragraphs     HTML Paragraphs                   The HTML element defines a paragraph : .   < p > This is a paragraph. < /p >                                < p > This is another paragraph. < /p >   HTML Display You cannot be sure how HTML will be displayed. Large or small screens, and resized windows will create different results. With HTML, you cannot change the output by adding extra spaces or extra lines in your HTML code. The browser will remove any extra spaces and extra lines when the page is displayed: Example < p > This paragraph con...

HTML Quotation and Citation Elements tags part 08

HTML Quotation and Citation Elements Quotation Here is a quote from WWF's website: For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally. HTML for Short Quotations The HTML element defines a short quotation. Browsers usually insert quotation marks around the element. Example < p > WWF's goal is to: < q > Build a future where people live in harmony with nature. < /q > < /p > HTML for Quotations The HTML element defines a section that is quoted from another source. Browsers usually indent elements. Example < p > Here is a quote from WWF's website: < /p > < blockquote cite ="http://www.worldwildlife.org/who/index.html" > Fo...
चित्र
 HTML Basic Examples  part -02 HTML Links HTML links are defined with the tag: Example < a href ="https://www.w3schools.com" > This is a link < /a > The link's destination is specified in the href attribute.  Attributes are used to provide additional information about HTML elements. You will learn more about attributes in a later chapter.       HTML Links HTML links are defined with the a tag: This is a link         HTML Images HTML images are defined with the tag. The source file ( src ), alternative text ( alt ), width , and height are provided as attributes: HTML Buttons HTML buttons are defined with the tag: Example < button > Click me < /button >
चित्र
                   HTML Basic Examples   Don't worry if these examples use tags you have not learned.You will learn about them in the next chapters.                                                  Subscribe & share our you tube channe l techanical web   HTML Documents All HTML documents must start with a document type declaration: . The HTML document itself begins with and ends with . The visible part of the HTML document is between and . Example < !DOCTYPE html > < html > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html ...
चित्र
                      HTML Editors   use the palthfrom in coding regard enfromastion by techanical web youtube channel   Write HTML Using Notepad or TextEdit Web pages can be created and modified by using professional HTML editors . However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac) . We believe using a simple text editor .is a good way to learn HTML Follow the four steps below to create your first web page with Notepad or TextEdit .     Step 1: Open Notepad (PC) Windows 8 or later: Open the Start Screen (the window symbol at the bottom left on your screen). Type Notepad . Windows 7 or earlier: Open Start > Programs > Accessories > Notepad                        ...