Hilfe bei HTML / CSS

  • Sevus, ich bin sehr sehr neu im thema html und suche hier hilfe.

    Ich hab ein html document wo ich per object data eine .txt datei eingefügt habe, diese versuche ich nun anzupassen, also fontfarbe, font, fontsize.
    Leider nichts was ich mache funktioniert. Kann mir hier wer helfen?

    <object data="test.txt" ></object> ist die stelle mit meinem problem

  • das ist dann ja wohl ein Fall für PHP ..
    try it..
    Gruß modem-kind

    index.php

    <head>
    <style>

    #test_txt{
    color: #f00;
    }
    </style>
    </head>

    <body>
    <div id="reminderContainer">
    <div id="reminderHeader">
    <span>Last Follower:</span>
    </div>


    <div id="reminderContent">
    <image id="twitchLogo" src="images\twitchLogo.png">
    <div="reminderContentText"> und hier fehlt das id

    <span id="test_txt">

    <!-- das kann dann weg <object data="test.txt" ></object> -->

    <?php

    $myfile = fopen("test.txt", "r") or die("Unable to open file!");
    echo fread($myfile,filesize("test.txt"));
    fclose($myfile);

    ?>

      <br>
    </span>
    </div>
    </div>
    </div>
    </body>
    </html>