Skip to main content

Posts

Showing posts with the label Images

Images

Images | HTML: Images can impact more than words. So it is easy to deliver the information.  Here is the images.html: <!DOCTYPE html> <html lang="en" dir="ltr">   <head>     <link rel="stylesheet" href="css/stylesheet.css">     <title>Images in Html</title>   </head>   <body>     <!-- pictures -->     <picture>       <source media="(min-width: 525px)" srcset="images/nature.jpg">       <source media="(min-width: 350px)" srcset="images/lights.jpg">         <img src="images/park.jpg" alt="flowers">     </picture>   </body> </html> Web view of Html: Here is the Video:

Headings, Paragraphs and Images

Headings, Paragraphs and Images | HTML:   Using Headings in HTML with h1,h2,h3,h4,h5,h6, Paragraphs with p and Images with img. Here is the HeadingsParagraphsImages.html: <!DOCTYPE html> <html>   <head>     <title>Headings,Paragraphs and Images</title>   </head>   <body>   <h1>Here is the details of Headings</h1>     <h1>Headings with h1</h1>     <h2>Headings with h2</h2>     <h3>Headings with h3</h3>     <h4>Headings with h4</h4>     <h5>Headings with h5</h5>     <h6>Headings with h6</h6>   <h1>Here is the details of Paragraphs</h1>     <p>this tag is used for Paragraphs and you can <br>       break Paragraphs wiht br tag</p>   <h1>Here is the deatails of Images</h1>     ...