Hi Leute,
ich habe im Netz dieses Zufallsscript gefunden:
<?php
/**
* Add this line of code in your page:
* <?php include "random_quote.php"; ?>
*/
$quotes[] = "This is a quote";
$quotes[] = "This is another";
$quotes[] = "This is anotsher";
$quotes[] = "quote 4";
$quotes[] = "quote 5";
$quotes[] = "quote 6";
print("<font face=\"Arial\" color\"#FF0000\">Hello and welcome to my website.</font>");
srand ((double) microtime() * 1000000);
$randomquote = rand(0,count($quotes)-1);
echo "<p>" . $quotes[$randomquote] . "</p>";
?>
Nun habe ich das Problem, dass die Schrift stinknormal (Also Times New Roman, schwarz etc.) ist und somit überhaupt nicht zu meinem Websitedesign passt.
WEiß jemand, wie ich den Schrifttyp auf "Trebuchet MS", Schriftgröße auf 16 und Farbe auf #000000 setzen kann???
DAnk euch im voraus.
ich habe im Netz dieses Zufallsscript gefunden:
<?php
/**
* Add this line of code in your page:
* <?php include "random_quote.php"; ?>
*/
$quotes[] = "This is a quote";
$quotes[] = "This is another";
$quotes[] = "This is anotsher";
$quotes[] = "quote 4";
$quotes[] = "quote 5";
$quotes[] = "quote 6";
print("<font face=\"Arial\" color\"#FF0000\">Hello and welcome to my website.</font>");
srand ((double) microtime() * 1000000);
$randomquote = rand(0,count($quotes)-1);
echo "<p>" . $quotes[$randomquote] . "</p>";
?>
Nun habe ich das Problem, dass die Schrift stinknormal (Also Times New Roman, schwarz etc.) ist und somit überhaupt nicht zu meinem Websitedesign passt.
WEiß jemand, wie ich den Schrifttyp auf "Trebuchet MS", Schriftgröße auf 16 und Farbe auf #000000 setzen kann???
DAnk euch im voraus.
Kommentar