Guest_imported
New member
- Jan 1, 1970
- 0
I'm new to this and to style sheets. is there a way to call a font in the <style> part that'll carry thru for the whole page? Like to avoid repeating the call with tables and the like...
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<style type="text/css">
BODY{
background-color:yellow;
color:purple;
font-size:8pt;
font-family:"Verdana,Tahoma,Arial";
font-weight:Bold;
}
TABLE{
color:blue;
font-size:8pt;
font-family:"Verdana,Tahoma,Arial";
font-weight:Bold;
}
</style>
</head>
<body>
This is a test
<table><tr><td>This is only a test</td></tr></table>
OK?
</body>
</html>