This video demonstrate how to use links in html and how to open link in another tab in html. Anchor tag is used to make links and target blank is use to open link in another tab.
code:
<!DOCTYPE html>
<html>
<head>
<title>HTML Links</title>
</head>
<body>
<a href="https://www.google.com" target="_blank"> Go to Google <a>
</body>
</html>
No comments:
Post a Comment