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
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]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.