Chris Fitness Gym Coming Soon Page 1st Projects
html code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chris Gym</title>
<link rel="stylesheet" href="css/main.css">
<!-- Font link -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&display=swap" rel="stylesheet">
<link rel="icon" href="images/pexels-leon-martinez-1552249.jpg" type="image/gif" sizes="16x16">
</head>
<body>
<div>
<h1>CHRIS FITNESS GYM</h1>
<p>New Gym is coming in your area!</p>
<button>Call us +91-7982959690</button>
</div>
</body>
</html>
Css Code :
/*
body{
background: url(../images/pexels-scott-webb-28054.jpg)no-repeat center center fixed;
background-size: cover;
}
div{
font-family: 'Noto Sans JP', sans-serif;
color: ghostwhite;
background-color: deeppink;
width: 50%;
margin: 0 auto;
text-align: center;
border-radius: 25px;
}
button{
font-family: 'Noto Sans JP', sans-serif;
padding: 10px 30px 10px 30px;
background: ;
color: ghostwhite;
font-size: 16px;
}*/
body{
background:url(../images/pexels-binyamin-mellish-116077.jpg) no-repeat center center fixed;
background-size: cover;
}
div{
background-color: midnightblue;
width: 40%;
margin: 0 auto;
margin-top: 150px;
padding: 10px;
border-radius: 25px;
font-family: 'Josefin Sans', sans-serif;
text-align: center;
color: ghostwhite;
opacity: 0.7;
}
button{
font-family: 'Josefin Sans', sans-serif;
padding: 8px 30px 8px 30px;
font-size: 16px;
background-color: yellow;
border-radius: 5px;
}
h1{
font-size: 3em;
}
p{
font-size: 1em;
}
Comments
Post a Comment