Posts

Showing posts from March, 2019

Html Images tag :##lesson 3

Image
1. HTML Image Tag:    HTML <img /> tag is insert image into a web document.  HTML image path define/declare inside <img /> tag.  The <img /> tag is empty tag, that mean's no closing tag.  <img /> tag have some attributes are use for display image on web page.  The src attribute, src stands for "source", that is path of image URL  Alt Attribute used to define an "alternate text" for an image. This specifies text to be identified in the image name.  Width and Height specifies the size of image to display on webpage. Example : Image alignment (Right side) : <html> <head>  </head> <body>   <img src="images\img_nat.png" width="120" height="80" alt="Natural" align="right"/>   <p>Natural resources (economically referred to as land or raw materials) </p> </body>  </html> Image alignment (Wrap around):  <html

Basic Html Tags: ##lesson 2

Image

Building Your First Web Page : ##lesson1

Image
Lesson 1 Building Your First Web Page If you can, imagine a time before the invention of the Internet. Websites didn’t exist, and books, printed on paper and tightly bound, were your primary source of information. It took a considerable amount of effort—and reading—to track down the exact piece of information you were after. Today you can open a web browser, jump over to your search engine of choice, and search away. Any bit of imaginable information rests at your fingertips. And chances are someone somewhere has built a website with your exact search in mind. Within this book I’m going to show you how to build your own websites using the two most dominant computer languages—HTML and CSS. Before we begin our journey to learn how to build websites with HTML and CSS, it is important to understand the differences between the two languages, the syntax of each language, and some common terminology.  What Are HTML & CSS? HTML , HyperText Markup Langua

Want to Learn Web Design Basics?

Image
If you want to get started in the world of web design, there are a few key skills you'll need to master.  First, you'll need a working knowledge of how to code a page in HTML. Then, you'll need to be able to use CSS to create the visual effects you want, whether that's a particular layout, typography, or colors and backgrounds.