Showing posts with label css. Show all posts
Showing posts with label css. Show all posts

Friday 8 September 2023

Web Development 22

 

LECTURE # 18

8/9/2023

Question #1 : What is the purpose of outline in html  ?

Answer: An outline is a line around an element. It is displayed around the margin of the element.

Question #2 : What is the purpose of outline-offset in html  ?

Answer:The outline-offset property adds space between the outline and the edge or border of an element.

Question #3 : What is the background-image, letter-spacing and opacity in html  ?

Answer: Background-image is used to add the background-image in code.

Letter-spcaing is used to add the space in letters of the text.

Opacity is used to make the color of the text dull.

Web Development 21

 

LECTURE # 17

7/9/2023

Question #1 : What is padding in html  ?

Answer: Padding is the space between the content and the border of an element.



Question #2 : What is margin in html  ?

Answer: Margins control the spacing width between the edges of your web page and the element itself.




Question #3 : What is meant by text-dacoration in html  ?

Answer: Text-decoration is the attribute of CSS used for the dacoration of text.



Question #4 : What is the purpose of :hover in html  ?

Answer: The :hover selector is used to select elements when you mouse over them. :hover is used to change the current properties of the text to make the comparison in properties of the link or text like it was before. Width, height, color etc are the properties which can be changed as shown.















Friday 1 September 2023

Web Development 20

 

LECTURE # 17

1/9/2023

Question #1 : What are the properties of style tag ?

Answer: Following are the properties of style,

  • backgroud-color 
  • background-image
  • border-radius 
  • border-top-left-radius 
  • border-top-right-radius
  • border-bottom-left-radius 
  • border-bottom-right-radius
  • color
  • font-style
  • width
  • height
  • border

and many others.....

Question #2 : What is meant by Inspect?

Answer: Short cut Keys for inspect are as follows: ctrl+shift+i . Inspect element is the developer tool that is used for the for making changes in the front end of the the site.Using inspect we can change the CSS and Html of the page or a site. For example; following shows the front end of google...





Friday 25 August 2023

Web Development 18

 

LECTURE # 15

25/8/2023

Question #1: Why is CSS used for?

Answer: CSS is used for designing purpose in html.

Question #2: How many types of CSS are there?

Answer: Their are three types of  CSS :
  1. Inline CSS
  2. Internal CSS
  3. External CSS

Question #3: What is Inline CSS?

Answer: It is used as an attribute in any tag.For Example 


Question #3: What is Internal CSS?

Answer: In Intrenal CSS style is used as tag.






Saturday 12 August 2023

Web Dvelopment 14

LECTURE # 12

12/8/2023

Following are some few tags that are inline tags

  • underline tag <u></u>
  • italic tag <i></i>
  • bold tag <b></b>
  • image tag <img></img>
Following are some few tags that are block tags
  • paragraph tag <p></p>
  • table tag <table></table>