Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Mit deinem CSS, indem du die Klasse/id whatever mit einer entsprechenden Anweisung im Stylesheet versiehst.mit welchem code ist das möglich?
#Beispielid a{
color:#848484;
}
<!DOCTYPE HTML> <html lang="de"><head>
<title>Eingefärbte Links</title>
<style type="text/css">
a{
color:#848484;
}
</style>
</head>
<body>
<a href="#">Das ist ein grauer Link</a>
</body>
</html>
<a href="#"><font color="#000000">Text</font></a>
... und damit einen Tag nutzen der als deprecated eingestuft ist. Die Inline-CSS Lösung sähe so aus, vom obigen Beispiel ist abzuraten.kannst du auch ganz ohne CSS einfach einen font TAG in den Link machen.
<a href="#" style="color:#848484">Text</a>