What's new

Help About html po baguhan lang po

Hdiahs682h

Honorary Poster
Established
Joined
Jul 18, 2020
Posts
370
Reaction
81
Points
229
Age
26
1680696981652.png

yung welcome to my webpage po sana gusto ko po sana na e cut yung background color pero diko po alam paano tapos yung background po ng website paano po e full nagrerepeat po kasi.
ito po yung code:
Code:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Personal Information</title>
</head>
<body background="1.jpg">
    <h1 style="color:chartreuse;text-align:center;background-color:blueviolet;">Welcome to my web page!!!>>>Stevenjay</h1>
    <pre style="color:darkgoldenrod;margin-left:3in;font-family: 'Times New Roman', Times, serif;">
         Name: Stevenjay
         Age: 21
         Birthday: January 30, 2000
         Birthplace: Mabini, Ubay, Bohol
    </pre>
</body>
</html>
 

Attachments

To remove the background color of the webpage, you can add the following CSS code inside the <style> tags or in a separate CSS file:

Code:
body {
    background-color: transparent;
}

This will set the background color to transparent, effectively removing the background color.

To make the background image full and not repeat, you can use the background-size property. Add the following CSS code:

Code:
body {
    background-size: cover;
}

This will make the background image cover the entire background area without repeating. If you want to stretch the image to fit the entire background area, you can use:

Code:
body {
    background-size: 100% 100%;
}

This will stretch the image to fit the entire background area without repeating.
 
Try mo set mo ung width

Set mona din ung background size:cover, tapos ung background-repeat: no-repeat
yung binigay po ng bot pag css po kasi gusto ko sana pure html muna tapos pag medyo kabisado ko na html aralin ko naman po css.
 
yung binigay po ng bot pag css po kasi gusto ko sana pure html muna tapos pag medyo kabisado ko na html aralin ko naman po css.
Lods need mo talaga css para mamanipulate mo ung design, tsaka dun naman sa codes mo may css nadin dun ung sinet mong "style"
 
a
Lods need mo talaga css para mamanipulate mo ung design, tsaka dun naman sa codes mo may css nadin dun ung sinet mong "style"
ahh so yung css po pala yun yung taga manipulate ng mga sizes, css pala yung style sensya na lods dami ko tanong. lods baka may notes ka na pure html lang baka naman pwde makahingi. hirap kasi pag may css pa tapos diko pa kabisado yung html.
 
a

ahh so yung css po pala yun yung taga manipulate ng mga sizes, css pala yung style sensya na lods dami ko tanong. lods baka may notes ka na pure html lang baka naman pwde makahingi. hirap kasi pag may css pa tapos diko pa kabisado yung html.
You do not have permission to view the full content of this post. Log in or register now. ito lods mga basics
 

Similar threads

Back
Top