Hey Guys i am new to this, i created a new .html Page (see the Attachement) but i don't know how to change the color Code: <!-- INCLUDE overall_header.html --> <b>Welcome to F1News</b> Welcome To F1Zone News, it's 60 seconds of rapid and concise Formula 1 news delivered Monday through to Friday. <embed src="http://www.sidepodcast.com/mp3player.swf" width="512" height="140" type="application/x-shockwave-flash" pluginspage="http:/geflashva /> Many Thanks To F1 Minute <!-- INCLUDE overall_footer.html --> Code (markup): so please does any1 knows how can i change the color of we.come to f1news to Orange?? and Many Thanks To F1 Minute--to ITALIC font and black color?? Thanks Guys, ah i need help i want to create a .php does any1 knows which program i shuld use? this is the code: <?php define('IN_PHPBB', true); $phpbb_root_path = './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); // Start session management $user->session_begin(); $auth->acl($user->data); $user->setup(); page_header('F1 News'); $template->set_filenames(array( 'body' => 'F1 News.html', )); make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx")); page_footer(); ?> Code (markup): i need it F1news.php but i don't know how to make it .php Thanks
<b> </b> thats bold tags <i> </i> itallic #000000 - the colour black in html <FONT COLOR="Black"> </FONT> Code (markup): hope that explains
<!-- INCLUDE overall_header.html --> <FONT COLOR="orange"> <b>Welcome to F1News</b></FONT> Welcome To F1Zone News, it's 60 seconds of rapid and concise Formula 1 news delivered Monday through to Friday. <embed src="http://www.sidepodcast.com/mp3player.swf" width="512" height="140" type="application/x-shockwave-flash" pluginspage="http:/geflashva /> <i>Many Thanks To F1 Minute</i> <!-- INCLUDE overall_footer.html --> is right?
That would work, but we don't encourage that. Imagine this site having ten pages, and you decide to change the colour of the title again. This means opening all ten pages and changing where it says FONT COLOR. You want CSS-- Cascading Style Sheets. One document which has the colours, fonts, sizes, positions, everything-- for all two, ten, or one hundred pages. Change one thing in the CSS sheet and all your pages would match! The FONT tag was used in the bad old days when there was nothing else you could do. It does still work... You should check out some CSS pages... and html pages too. For instance, I'd write the html this way: <!-- INCLUDE overall_header.html --> <h1>Welcome to F1News</h1> <h2>Welcome To F1Zone News, it's 60 seconds of rapid and concise Formula 1 news delivered Monday through to Friday.</h2> <object type="application/x-shockwave-flash" data="mp3player.swf" width="512" height="140"> <param name="movie" value="http://www.sidepodcast.com/mp3player.swf"" /> </object> <p class="thanks">Many Thanks To F1 Minute</p> <!-- INCLUDE overall_footer.html --> Code (markup): Your CSS page would be like this: h1 { color: orange; <-- or use a hex number like #fdb300 } h2 { font: normal 1em/1.1em Georgia, "Times New Roman", serif; color: #000; <---that's black } p.thanks { font-style: italic; } Code (markup): The data in the object might have to also have the full path like in param but I'm not sure. If it works in FireFox but not IE then that's it. Also, a long video may not play right away in IE... there's a way around that too though.