+ 1
what is the structure for an internal style sheet
3 Respostas
+ 3
using style tag in head. like blew code:
<html>
<head>
<title>PageTitle<title>
<style>
//YOUR_STYLE_CODE
</style>
</head>
<body>
<!-- YOUR_BODY -->
</body>
</html>
+ 1
thank you