-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
32 lines (31 loc) · 1.8 KB
/
index2.html
File metadata and controls
32 lines (31 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Second Lec</title>
</head>
<body>
<a href="#cigi">Cigis</a> <hr>
<a href="index1.html">Link in local folder system</a> <hr>
<a href="https://www.google.com">Absolute link</a> <hr>
<a href="/"> "/" href value</a>
<hr>
<a href="index1.html" target="_blank">target blank value</a>
<hr>
<a href="index1.html" target="_parent">target parent value</a>
<hr>
<a href="index1.html" target="_self">target self value</a>
<hr>
<a href="index1.html" target="_top">target top value</a>
<br>
before tag <b>Test for tag "b"</b> after tag
<br>
<h1>CD for Us</h1>
<p>if "href" value starts with "#" that declared we re moving in same page. next variable after # declares we are searching an element which has that name</p>
<a name="cigi"></a>
<p>
<img width="100" src="https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/fc6bc1f1-2870-4492-909c-29369011dcf6/d9pjndy-9c266f8c-3b83-4468-a537-e962a53612f2.jpg/v1/fill/w_1164,h_687,q_70,strp/high_noon_jhin___splash_art_by_alvinlee_d9pjndy-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9ODg1IiwicGF0aCI6IlwvZlwvZmM2YmMxZjEtMjg3MC00NDkyLTkwOWMtMjkzNjkwMTFkY2Y2XC9kOXBqbmR5LTljMjY2ZjhjLTNiODMtNDQ2OC1hNTM3LWU5NjJhNTM2MTJmMi5qcGciLCJ3aWR0aCI6Ijw9MTUwMCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.OVnG1hZjqLR4fC1sWHGrZvWS5mDLcFRD65vWHbwNfhY" alt="Jhin">
</p>
</body>
</html>