fbpx
HTML-CSS-Background

HTML-CSS-Background

CSS Background The CSS background properties are used to define the background effects for elements. There are lots of properties to design the background. Background-Color The background-color property in CSS is used to specify the background color of an element....
HTML-CSS-TEXT

HTML-CSS-TEXT

1) Text Color This property can be used to change the color of the text. It can be defined by using color property. <!DOCTYPE html> <html lang="en"> <head> <style> h3{font-family: ‘Times New Roman’, Times, serif;}...
HTML-CSS-Fonts

HTML-CSS-Fonts

Css fonts CSS Font property is used to control the look of texts. By the use of CSS font property you can change the text size, color, style and more   1)CSS Font Family CSS font family can be divided in two types: Generic family: It includes Serif, Sans-serif,...
HTML-CSS-Image

HTML-CSS-Image

Importance of Images CSS Images Images are an important part of any web application. Including a lot of images in a web application is generally not recommended, but it is important to use the images wherever they required. CSS helps us to control the display of...
HTML-CSS-Table

HTML-CSS-Table

HTML-CSS-Table HTML tables allow web developers to arrange data into rows and columns. A table in HTML consists of table cells inside rows and columns. HTML Table Example Let’s see the example of HTML table tag. <!DOCTYPE html> <html> <head>...
HTML/FORM

HTML/FORM

HTML Form An HTML form is a section of a document which contains controls such as text fields, password fields, checkboxes, radio buttons, submit button, menus etc. An HTML form facilitates the user to enter data that is to be sent to the server...