calumrouge Posted December 3, 2006 Share Posted December 3, 2006 Say if I wanted to produce this in index.php[size=12pt][font=Arial][b][color=red]Welcome to my Site.[/color][/b][/font][/size](Size: 12pt)(Font: Arial)(Bold)(Colour: Red!!!!)I would use[font=Courier New]echo "Welcome to my Site";[/font]But how would I change the font, style, colour and size in php's echo command.Thanks Link to comment https://forums.phpfreaks.com/topic/29313-resolvedchanging-echo-type/ Share on other sites More sharing options...
calumrouge Posted December 3, 2006 Author Share Posted December 3, 2006 [b]polite, non-spamming, getting a bit bored waiting :P only joking, BUMP![/b] Link to comment https://forums.phpfreaks.com/topic/29313-resolvedchanging-echo-type/#findComment-134350 Share on other sites More sharing options...
chiprivers Posted December 3, 2006 Share Posted December 3, 2006 I always us a seperate style sheethere is the CSS file: style.css[code].title {font-family: arial;font-size: 12px;font-weight: bold;color: red}[/code]you would then put this in the header[code]<LINK REL=StyleSheet HREF="style.css" TYPE="text/css">[/code]in your body you would then use this:[code]echo "<span class=\"title\">Welcome to my Site</span>";[/code] Link to comment https://forums.phpfreaks.com/topic/29313-resolvedchanging-echo-type/#findComment-134351 Share on other sites More sharing options...
trq Posted December 3, 2006 Share Posted December 3, 2006 With html. Php has nothing to do with what text will look like, you must format your output with html. Link to comment https://forums.phpfreaks.com/topic/29313-resolvedchanging-echo-type/#findComment-134352 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.