-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut6.html
24 lines (24 loc) · 976 Bytes
/
tut6.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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>Links and Images</title>
</head>
<!-- tags vs attributes
"which one is written first is called tags" like,mata,head
"after that attribute is present" like href, name -->
<body>
<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://twitter.com"target=_blank>Go to twitter</a><br>
<a href="https://linkedin.com"target=_blank>Go to linkedin</a><br>
<a href="/tut4.html"target=_blank>Tut 4</a><br>
<a href="/tut5.html"target=_blank>Tut 5</a><br>
<!-- image is not present so alt text is shown -->
<!-- <img src="asu.jpg" alt="Error loading image"> -->
<img src="https://source.unsplash.com/user/erondu/500x300" alt="remote image"
width="700" height="200">
</body>
</html>