Answers for "css landing page"

14

html template

<!DOCTYPE>
<html>
  <head>
    <title>Title</title>
    
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="style.css">
  </head>
  
  <body>
    
  </body>
</html>
Posted by: Guest on June-03-2020
1

landing page html css

<!--Simple Landing Page using html/css-->
<!DOCTYPE html>
<html>
    <head>
        <title>You've Landed at WebsiteName.com!</title>
        <style>
            body{
                background-color:lightgreen;
                text-align:center;
                font-family:cursive;
            }
        </style>
    </head>
    <body>
        <h1 style="font-size:60px"><span style="color:purple">Website</span><span style="color:darkgreen">Name.com</span></h1>
        <h1>WebsiteName.com is under contruction/is parked.</h1>
        <h1 style="font-size:40px">Check back later!</h1>
        <img src="https://server25.jacute.xyz/clock.png" width="200px">
    </body>
</html>
Posted by: Guest on August-02-2021

Browse Popular Code Answers by Language