What are the steps to create my family Web page using Hyperlink image tags in HTML?
What are the steps to create my family Web page using Hyperlink image tags in HTML?
<html>
<style>
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Fruktur&display=swap");
body {
font-family: "Dancing Script", cursive;
font-family: "Fruktur", cursive;
background-image: url("https://media.istockphoto.com/yourfamily/=");
background-size: 100% 100%;
color: white;
}
h1 {
font-size: 500%;
}
h2,
h3 {
font-size: 300%;
}
p {
font-size: 150%;
}
div {
background: black;
padding: 3%;
margin: 10%;
text-align: center;
border-radius: 10px;
}
img {
width: 100%;
}
img,
div {
border-radius: 10px;
}
a {
color: tomato;
}
img:hover {
cursor: pointer;
transform: scale("1.05");
box-shadow: 0px 0px 5px 5px aquablue;
}
h3:hover {
cursor: pointer;
animation: mymove 10s infinite;
}
@keyframes mymove {
from {
color: aliceblue;
}
to {
color: dorgerblue;
font-size: 300%;
}
}
</style>
<div>
<h1> My family </h1>
<h2>Your Family Name Mr .Ram and Mrs Sita </h2>
<a href = "Lovely family " > <img src="family.png" width=1000 height=1000> </a>
<a href = "Cute family " > <img src="Your family.png" width=1000 height=1000> </a>
<hr>
<p> What are the steps to create my family Web page using Hyperlink image tags in HTML?</p>
<h3>I love my family❤️</h3>
</div>
</html>
Comments
Post a Comment