how do you chage the text color of the body?
how do you change your font and font size?
how do you edit a picture to stretch to the whole page or become fullscreen?Simple html web designing questions?
For the text color and font styles, place this between the head tags or remove the style tags and put the raw CSS on your external CSS file:
%26lt;style type=';text/css';%26gt;
body {
width: XXpx;
height: YYpx; /* optional */
colorL #000; /* text color */
font-family: arial, 'times new roman';
font-size: 1em;
}
%26lt;/style%26gt;
CSS 2.1 does not allow a background image to be resized. CSS 3.0 will solve that problem, but not all browsers support all of CSS 3.0 yet.
For image stretching, you could try these techniques:
Background to Fit Screen II: http://paynelessdesigns.pastebin.com/f76 | http://paynelessdesigns.pastebin.com/VUS
http://www.cssplay.co.uk/layouts/backgro
http://www.scriptdungeon.com/freejavascr
http://css-tricks.com/perfect-full-page-
RonSimple html web designing questions?
Start here:
http://www.w3schools.com/html/
http://www.w3schools.com/Css/
how do you chage the text color of the body?
%26lt;body bgcolor=';#E6E6FA';%26gt;
how do you change your font and font size?
%26lt;p%26gt;%26lt;font style= ';arial'; size=';3'; color=';#CCCCCC';%26gt;Your text here%26lt;/font%26gt;%26lt;/p%26gt;
how do you edit a picture to stretch to the whole page or become fullscreen?
%26lt;img src=';your_pic.jpg'; height=';100%'; width=';100%'; /%26gt;
Subscribe to:
Post Comments
(Atom)
No comments:
Post a Comment