-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLecture 05.html
More file actions
35 lines (33 loc) · 1.64 KB
/
Lecture 05.html
File metadata and controls
35 lines (33 loc) · 1.64 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
33
34
35
<!-- This is Our Lecture No 05 -->
<!-- In this Lecture we will discuse about Image and anchor Tags -->
<!-- Links and Tags -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Full course</title>
</head>
<body>
<!-- We will study about Links -->
<!-- How to add Diffrent Links with your website -->
<a href="https://google.com" target="_blank">Go to Google</a><br>
<a href="https://facebook.com" target="_blank">Go to Facebook</a><br>
<a href="https://linkedin.com" target="_blank">Go to linkedin</a><br>
<a href="https://twitter.com" target="_blank">Go to Twitter</a><br>
<!-- {a} is tag and {href} is attributes -->
<!-- This Link open in these Tab if you want open these link in
new tab you can use a new Attributes -->
<!-- {target="_blank"} is used to open link in new Tab -->
<!-- {<br>} If you break a Line then you can use -->
<!-- If you want to add internal link like link your HTML ,CSS
JavaScript file you can use this -->
<!-- Internal Link -->
<a href="/lecture 03.html" target="_blank">Open Lecture 03</a><br>
<!-- Know we Link images -->
<img src="https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80" alt="Error Loading Image" width="300" height="250"><br>
<!-- If image not Load then alt message will be show -->
<img src="me.jpg" alt="Error Loading Image">
</body>
</html>