Write a program to display Hyperlinks in HTML Programming Language
Write a program to display Hyperlinks in HTML Programming Language
Name of Program - Program to display text color
Text Editor - Notepad, Notepad++, Visual Studio Code, Atom, etc.
Code Input-
<!DOCTYPE html>
<html>
<head>
<title>Hyperlink Example</title>
</head>
<body>
<p>Click given link</p>
<a href = "https://kindernote.blogspot.com/" target = "_self">Kindernotes</a>
</body>
</html>
Output Screen - Internet Browser, Google Chrome, Microsoft Edge, etc.
Code View -
Click given link
Kindernotes
Post a Comment