HTML CSS examples for CSS Widget:Font
Make my font bold using css
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Lorem ipsum d</title> <style type="text/css"> p {<!-- www . j a v a 2 s . c o m--> font-weight:bold; font-size:27px; } </style> </head> <body> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ullamcorper molestie lacus sed fermentum. Aliquam erat volutpat. Vestibulum tortor neque, ornare vitae tempor hendrerit, luctu</p> </body> </html>