You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Body tag font-size Percenta...

24 lines
678 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>body tag font-size Percentange larger</title>
<style type='text/css'>
body {
font-size: 200%;
}
</style>
</head>
<body>
To love deeply in one direction makes us more loving in all others.<br><br>
Anne-Sophie Swetchine<br>
<p>
Love is always bestowed as a gift - freely,<br>
willingly and without expectation.<br>
We don't love to be loved; we love to love.<br><br>
Leo Buscaglia
</p>
</body>
</html>