-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (55 loc) · 2.38 KB
/
index.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Solution for Technigo Coding Challenge</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- YOUR CODE GOES HERE: -->
<div class="header">
<h1>Uniform Resource Locator - URL</h1>
</div>
<br>
<center><div class="main">
<div class="container-one">
<h3>URL is one of the key concepts of the Web</h3>
<p>URL stands for <b>Uniform Resource Locator</b>. A URL is nothing more than the address of a given unique resource on the Web. In theory, each valid URL points to a unique resource.</p>
<p>Such resources can be an HTML page, a CSS document, an image, etc. In practice, there are some exceptions, the most common being a URL pointing to a resource that no longer exists or that has moved. </p>
<p>As the resource represented by the URL and the URL itself are handled by the Web server, it is up to the owner of the web server to carefully manage that resource and its associated URL.</p>
<p>The most <b>important</b> parts in URL is:
<ul>
<li>Scheme</li>
<li>Authority</li>
<li>Path to resource</li>
<li>Parameters</li>
<li>Anchor</li>
</p>
</div>
</div>
<br>
<div class="img">
<center>
<picture>
<img width="800"
<img src="https://developer.mozilla.org/en-US/docs/Learn/Common_questions/What_is_a_URL/mdn-url-all.png"
</picture
</div>
<br>
<br>
<center>
<div class="main">
<div class="container-two">
<h4>Do you want to know more about URL?</h4>
<p><a href="https://blog.hubspot.com/marketing/parts-url"
target="_blank">Here</a> you can read a <b>short guide</b> about the five basic parts of a URL.</p>
<p>Are you more of a <b>watcher</b>? See video below or visit <a href="https://edu.gcfglobal.org/en/internetbasics/understanding-urls/1/" target="_blank">this</a> page. </p>
<p>Do you want to learn how to <b>create</b> a free URL? Find out in this step-to-step <a href="https://www.techwalla.com/articles/how-to-make-a-free-url" target="_blank">guide.</a></p>
</div>
</div>
<br>
<center>
<iframe width="400" height="200" src="https://www.youtube.com/embed/5Jr-_Za5yQM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
</center>
</html>