-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddinglinks.html
23 lines (22 loc) · 1022 Bytes
/
addinglinks.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Links</title>
</head>
<body>
<!-- Anchor Tag -->
<!-- Opening link in same tab -->
<a href="https://www.google.com/search?q=nature&rlz=1C1CHBD_enIN887IN887&sxsrf=AOaemvKoemoz42LSGI-ab9FIAt-Z0Xp0pQ:1641912953111&source=lnms&tbm=isch&sa=X&ved=2ahUKEwjrusmy-qn1AhVywzgGHaXIAy8Q_AUoAXoECAIQAw&biw=1242&bih=561&dpr=1.1" target="_blank"><img src="https://media.springernature.com/full/springer-cms/rest/v1/img/18893370/v1/height/320" alt="Go to nature images"></a>
<br>
<a href="https://www.youtube.com/"> Youtube </a>
<br>
<!-- Opening link in different tab -->
<a href="https://www.google.com" target="_blank"> Aditya is the SDE in this company</a>
<br>
<!-- Linking to already present files on pc to open -->
<!-- For file present in same folders -->
<a href="index.html" target="_blank">Index File</a>
<!-- Copy the whole path if it is in different folders -->
<!-- to go to one previous folder, you can use double dot .. before file name -->
</body>
</html>