C# Programming: How to use links in html | open link in another tab in html | Learn HTML5

Monday, June 18, 2018

How to use links in html | open link in another tab in html | Learn HTML5





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