Learn How to Create Basic “Website Coming Soon…” web Page Using HTML and CSS.
Output :
Output. |
Download Image :
Download logo for free. |
<!DOCTYPE html>
<html>
<head>
<title>Learning html and css</title>
<link href="https://fonts.googleapis.com/css?family=Hi+Melody" rel="stylesheet">
<style>
body{
background: linear-gradient(to right, #f1f1f1, white);
}
.img-1{
width: 50%;
height: 50%;
margin-left: auto;
margin-right: auto;
display: block;
}
h1{
text-align: center;
font-family: 'Hi Melody', cursive;
font-size: 100px;
}
</style>
</head>
<body>
<img src="https://2.bp.blogspot.com/-YFWXJBSu5QQ/Wsiz_LeamUI/AAAAAAAAAks/ZtZ4XDNdxbc4WmmPK1oxNmZVEHxnNZllwCLcBGAs/s400/logo.png" class="img-1">
<h1>
Website Coming Soon...</h1>
</body>
</html>