Css 3 Text Si Font
Css 3 Text Si Font
Css 3 Text Si Font
1
Fisa css 3
Fonturi </body></html>
1. Setarea fontului pentru text(font-family) 4.Grosimea fontului (font-weight:bold)
<html>
<head> <html>
<head>
<style type="text/css">
h3 {font-family: times} <style type="text/css">
p {font-family: courier} p.normal {font-weight: normal}
p.sansserif {font-family: sans-serif} p.thick {font-weight: bold}
</style> p.thicker {font-weight: 900}
</style>
</head>
</head>
<body>
<h3>This is header 3</h3> <body>
<p>This is a paragraph</p> <p class="normal">This is a paragraph</p>
<p class="sansserif">This is a paragraph</p> <p class="thick">This is a paragraph</p>
</body> <p class="thicker">This is a paragraph</p>
</html> </body>
<body> <body>
<h1>This is header 1</h1> <p class="normal">This is a paragraph</p>
<h2>This is header 2</h2> <p class="small">This is a paragraph</p>
<p>This is a paragraph</p> </body>
</body>
</html>
</html>
<body> <body>
<h1>This is header 1</h1> <p>This is a paragraph</p>
<h2>This is header 2</h2> </body>
<p>This is a paragraph</p>
2