top of page

<html>
<head>
<style>
p.serif {
    font-family: "Times New Roman", Times, serif;
}

p.sansserif {
    font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>

<h1>CSS font-family</h1>
<p class="serif">Άσπρο περιστέρι μεσ’ τη συννεφιά μου `δωσες το χέρι να `χω συντροφιά άσπρο περιστέρι μαύρο μου φτερό κάθε καλοκαίρι θα σε καρτερώ

</body>
</html>
--------------------------------------------------
<html>
<head>
<style>
h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}
 

bottom of page