forked from kkkombo/HTML-CSS-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.html
More file actions
25 lines (21 loc) · 933 Bytes
/
links.html
File metadata and controls
25 lines (21 loc) · 933 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>HTML Boilerplate</title>
<meta name="author" value="Alexandra Dedok" />
<meta name="keywords" content="HTML, CSS" />
</head>
<body>
<!-- Here goes content. None found.-->
<h2 id="absolutelink">Absolute external link:</h2>
<p>Visit Google: <a href="https://www.google.com">click here</a>!</p>
<h2>Relative link:</h2>
<a href="./images/unsplash.jpg">Check those cute pinguins out!</a>
<h2>Specific section link:</h2>
<p>Want to know more about external links? Click <a href="#absolutelink">here</a>!</p>
<h2>E-Mail link:</h2>
<p>Send me a <a href="mailto:dedok.alexandra@gmail.com">mail</a> :)</p>
<h2 id="absolutelink">Absolute external link in a new window:</h2>
<p>Visit Google: <a target="_blank" href="https://www.google.com">click here</a>!</p>
</body>
</html>