You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Source/Demo/Common/Samples/04.Links.htm
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,8 @@
1
+
<!DOCTYPE html>
1
2
<html>
2
3
<head>
3
4
<title>Links</title>
4
-
<linkrel="Stylesheet" href="StyleSheet"/>
5
+
<linkrel="Stylesheet" href="StyleSheet">
5
6
</head>
6
7
<body>
7
8
<h1>Links
@@ -13,21 +14,21 @@ <h1>Links
13
14
<p>
14
15
<h3>URI href</h3>
15
16
Any valid URI path will activate the default internet browser.
16
-
<br/>
17
+
<br>
17
18
Check the context menu options on the link as well by right clicking on it.
18
-
<br/>
19
+
<br>
19
20
This is a URI link to <ahref="https://codeplexarchive.org/project/HtmlRenderer">HTML Renderer</a> (<code>href="https://codeplexarchive.org/project/HtmlRenderer"</code>)
20
21
</p>
21
22
<p>
22
23
<h3>File path href</h3>
23
24
Any file system path, It will be started as if you typed it on the <i>Run</i> Windows dialog.
24
-
<br/>
25
-
This is a link to <ahref="C:\">hard drive</a><code>(href="C:\")</code>
25
+
<br>
26
+
This is a link to <ahref="C:/">hard drive</a><code>(href="C:/")</code>
26
27
</p>
27
28
<p>
28
29
<h3>Anchors href</h3>
29
30
Link to elements on the page using element id will scroll to that element so it will be at the top.
30
-
<br/>
31
+
<br>
31
32
This is a link to <ahref="#anchor">anchor</a> at the bottom of the page <code>(href="#anchor")</code>
0 commit comments