Change background | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Change background

How to change it

17th Jun 2022, 7:13 PM
Johnson Chinonso
Johnson Chinonso - avatar
10 Answers
+ 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
18th Jun 2022, 6:01 PM
😇🌟SWATI🌟😇
😇🌟SWATI🌟😇 - avatar
+ 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
18th Jun 2022, 6:52 AM
Lisa
Lisa - avatar
+ 1
You can change background using CSS
17th Jun 2022, 7:37 PM
Lisa
Lisa - avatar
+ 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.)
18th Jun 2022, 3:46 PM
Dev-117
Dev-117 - avatar
18th Jun 2022, 6:03 PM
😇🌟SWATI🌟😇
😇🌟SWATI🌟😇 - avatar
0
background-color: #HEXCOD;
17th Jun 2022, 7:18 PM
Justice
Justice - avatar
0
Lisa What's CSS?
18th Jun 2022, 6:44 AM
Shrikant Pandey
Shrikant Pandey - avatar
0
You may use an inline style on your body to change the background color. <body style="background-color:blue;">
18th Jun 2022, 7:32 AM
Chris Coder
Chris Coder - avatar
0
Shrikant Pandey CSS is Cascading Style Sheets used for styling HTML
19th Jun 2022, 6:14 PM
Usman
Usman - avatar