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
HTML
<html> <head>
<title>My Stream Animated Panels</title>
<meta http-equiv="refresh" content="60">
<style>
@font-face {
font-family: 'Dolce Vita';
src: url('fonts/Dolce Vita.ttf');
}
#reminderContainer {
width: 0px;
height: 0px;
background: #2e5794;
position: absolute;
top: 0px;
left: 0px;
overflow: hidden;
color: white;
font-family: 'Dolce Vita';
-webkit-box-shadow: 0px 0px 20px #0f3369;
-webkit-animation: animateReminder 10s 0s 1;
}
#reminderHeader {
width: 580px;
height: 26px;
background: #0f3369;
position: relative;
overflow: hidden;
text-align: center;
font-size: 24px;
}
#reminderContent {
width: 580px;
height: 84px;
background: #2e5794;
position: relative;
overflow: hidden;
color: white;
}
#twitchLogo {
width: 75px;
height: 75px;
float: left;
}
@-webkit-keyframes animateReminder {
0%, 100% {
width: 0px;
height: 24px;
}
20%, 80% {
width: 560px;
height: 24px;
}
30%, 70% {
width: 560px;
height: 100px;
}
}
</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">
<span>
<object data="test.txt" ></object> <br>
</span>
</div>
</div>
</div>
</body>
</html>
Alles anzeigen