a tag example 2
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
<div id="home" style="height: 100vh;background: yellow">
<h1>Home</h1>
<a href="mailto:example@gmail.com?subject=Subject%20Here&body=Body%20text%20here">sabir@gmail.com</a><br>
<a href="tel:+1234567890">Call</a><br>
<a href="https://wa.me/1234567890?text=Hello%20there!">whatsapp</a><br>
</div>
<div id="about" style="height: 100vh;background:green">
<h1>About</h1>
</div>
<div id="contact" style="height:100vh ;background:lightblue">
<h1>Contact</h1>
</div>
</body>
</html>
Comments
Post a Comment