How to put two or more titles on the same line
angel_jeroumi
Posted messages
56
Status
Member
-
angel_jeroumi Posted messages 56 Status Member -
angel_jeroumi Posted messages 56 Status Member -
salut,
I'm going to put three titles of different sizes on the same line with HTML5 and CSS3
here is my source code:
I'm going to put three titles of different sizes on the same line with HTML5 and CSS3
here is my source code:
<head> <title> my site </title> <meta charset="utf-8"/> <style> body { background-color: black; color: white; background-image: url("neige3.jpg"); background-repeat: no-repeat; } p { font-size: 100px; font-style: italic; font-weight: bold; text-decoration: underline; text-align: center; color: maroon; } .list { text-align: left; } .propos { text-align: right; } </style> </head> <body> <div> <p> My site </p> <h2 class="list"> list </h2> <h2 class="propos"> about </h2> </div> </body> </html>