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?


What are the steps to create my family Web page using Hyperlink image tags in HTML Here I'm not sharing steps but sharing free Source code for making family web page using Hyperlink image tags in html We have to use css for styling creating family web page and html tags .you can take idea from this source code. 

<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

Last 7 Days

How to use referrerpolicy Attribute value ( no-referrer-when-downgrade ) with < iframe > tag in HTML ? with example

How to use autoplay and mute attribute with < video > tag in HTML for youtube ? with example

How to use Local Variable for whose values are present till function is executing in solidity ?

How to add Amazon website inside iframe?

How to use comments in Solidity programming language ?

How to use string in Solidity programming language ?

How to use arrays in Solidity programming language ?