Skip to content

Commit

Permalink
blog fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jscyo committed Aug 16, 2023
1 parent 1209a43 commit c126578
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/url-vs-uri/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ author: "Joel Coutinho"
- [What is a URL](#url-uniform-resource-locator)
- [What is a URI](#uri-uniform-resource-identifier)
- [What is a URN](#urn-uniform-resource-name)
- [Conclusion]
- [Conclusion](#conclusion)

## Introduction

Expand All @@ -23,9 +23,9 @@ In the ever-evolving landscape of web development, often times it can be confusi

The more recognizable of the two is the URL or Uniform Resource Locator. Analogous to how your physical address helps someone find your home, a URL is what guides your web browser to locate a specific resource on the internet. This resource could be a webpage, an image, a video, or any other digital content. A typical URL consists of several components, including:

**Protocol**: This is the communication method your browser uses to retrieve the resource. Common protocols include "http," "https," "ftp," and more.
**Protocol**: This is the communication method your browser uses to retrieve the resource. Common protocols include `http`, `https`, `ftp`, and more.

**Domain Name**: The domain name represents the address of the website's server. For example, in "www.example.com," "example.com" is the domain name.
**Domain Name**: The domain name represents the address of the website's server. For example, in `www.example.com`, `example.com` is the domain name.

**Path**: The path specifies the specific location of the resource on the server's directory structure. It resembles a file path on your computer.

Expand Down

0 comments on commit c126578

Please sign in to comment.