0
Change background
How to change it
10 Antworten
+ 3
Shrikant Pandey CSS stands for Cascading Style Sheets
CSS describes how HTML elements are to be displayed on screen, paper, or in other media
CSS saves a lot of work. It can control the layout of multiple web pages all at once
External stylesheets are stored in CSS files
+ 2
What is Google?
Go to Learn section, select the course and start learning.
First do the html course, then the css course.
https://www.sololearn.com/Course/HTML/?ref=app
https://www.sololearn.com/Course/CSS/?ref=app
https://www.sololearn.com/Course/web-dev-basics/?ref=app
+ 1
You can change background using CSS
+ 1
Css can be used for this. CSS is what you use to make your html web apps look nicer. Heres how you can implement it
File structure:
App -|
__|__
| |
Html file Css file
inside your html within the <head> tag
<link rel=“stylesheet” href=“[yourcssfilename].css”>
Inside the css file
body{
background-color: [colorname];
}
For the color name take a look at hexadecimal or just use the color names (green, red, blue, etc.)
+ 1
Johnson Chinonso "CSS Backgrounds" https://www.w3schools.com/css/css_background.asp
0
background-color: #HEXCOD;
0
Lisa What's CSS?
0
You may use an inline style on your body to change the background color.
<body style="background-color:blue;">
0
Shrikant Pandey CSS is Cascading Style Sheets used for styling HTML