Jag håller på att göra master-filer till min hemsida. Problemet är att jag inte kan få texten vit (låter sjukt va?). Kan nån hjälpa mig?
EDIT: Ett till liknande problem. Kan inte få länkar att bli "navy"-färgade.
Här är html koden:
<html> <head> <link rel="stylesheet" type="text/css" href="contentstyle.css"> <title>s.k. titel</title> </head> <body> <h>Header</h> <br> <sh>Small header</sh> <hr> <br> <p>Text</p> <----------------------------- där e problemet <br> <a href="http://blabla.com">Link</a> <------------ problem 2 </body> </html>
Och här är CSS koden:
h {font-family: Arial; color: white; font-size: 1.2em; }
sh {font-family: Arial; color: white; font-size: 1em; }
p {font-family: Arial; color: white; font-size: 1em; } <------------ funkar inte
li {font-family: Arial; color: white; font-size: 1em; }
a:link {font-family: Arial; color: navy; font-size: 1em; } <----------- funkar inte 2
a:visited {font-family: Arial; color: white; font-size: 1em; }
a:hover {color: font-family: Arial; color: navy; font-size: 1.2em; }
Tänk på att jag har gjort egna taggar; h och sh (header, small header)(dom funkar jättefint).