-
Notifications
You must be signed in to change notification settings - Fork 0
/
html-playground.html
43 lines (34 loc) · 1.68 KB
/
html-playground.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<html>
<head>
<link rel="stylesheet" type="text/css" href= "css/main.css">
</head>
<body>
<h1>Learning HTML Again</h1>
<span class="thick">
<p>
<h3 id="sum">Summary</h3>
I am using Brackets to re-learn HTML web design.
</p><br/>
</span>
<div id="div1">
<p>
<h3 id="img">Adding Images</h3>
This is a sample image from online. To insert an image, use the "img src=" tag.<br/>
<img src="https://curriculum-content.s3.amazonaws.com/web-development/circle_logo.jpg">
</p><br/>
<p>
<h3 id="hyper">Adding Hyperlinks</h3>
An example of hyperlinking to an external webpage.<br/>
<a href="http://freescrivenermasterclass.com/03-download-product-bonuses18853158?inf_contact_key=b4a38d2b22c976364f5423f975160257b9351cf2459aec0686db9cd667d6a809">Access Learn Scrivener Fast Bonuses</a>.<br/><br/>
Send me an email at <a href="mailto:[email protected]">[email protected]</a><br/>
<a href="http://freescrivenermasterclass.com/03-download-product-bonuses18853158?inf_contact_key=b4a38d2b22c976364f5423f975160257b9351cf2459aec0686db9cd667d6a809"> <img src="http://freescrivenermasterclass.com/hosted/images/c0/ace820127911e88acf517ec3a1a922/Big-Arrangement-05.png" alt="Learn Scrivener Fast Ninja"></a>
</p><br/>
</div>
<p>
<h3>Quick Links</h3>
<a href="#sum">Jump to Summary</a><br/>
<a href="#img">Jump to Images</a><br/>
<a href="#hyper">Jump to Hyperlinks</a><br/>
</p>
</body>
</html>