landing page html css

Solutions on MaxInterview for landing page html css by the best coders in the world

showing results for - "landing page html css"
Clara
07 May 2016
1<!--Simple Landing Page using html/css-->
2<!DOCTYPE html>
3<html>
4    <head>
5        <title>You've Landed at WebsiteName.com!</title>
6        <style>
7            body{
8                background-color:lightgreen;
9                text-align:center;
10                font-family:cursive;
11            }
12        </style>
13    </head>
14    <body>
15        <h1 style="font-size:60px"><span style="color:purple">Website</span><span style="color:darkgreen">Name.com</span></h1>
16        <h1>WebsiteName.com is under contruction/is parked.</h1>
17        <h1 style="font-size:40px">Check back later!</h1>
18        <img src="https://server25.jacute.xyz/clock.png" width="200px">
19    </body>
20</html>