Jump to content

[resolved]Changing echo Type.


calumrouge

Recommended Posts

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

I always us a seperate style sheet

here 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]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.