SlideShare une entreprise Scribd logo
1  sur  26
Websites 101: 
What is a website? 
By: Caity Cogdell
Your Home on the Web
Your Website: Your House 
Your website is your 
home on the web. 
In fact, there are many 
helpful ways in which we 
can think of a website in 
terms of a house.
Hosting: The Empty Lot 
A hosting account is a 
server (a computer) where 
your site files are stored. 
The hosting account is like 
an empty lot where you 
will build your house.
IP Address: Latitude/Longitude 
The IP address is a string of 
numbers that give the exact 
address of your hosting 
account. 
Ex: 198.154.222.140 
It’s like latitude and longitude 
– an accurate description of 
where your house is, but not 
very useful for telling 
someone how to get there.
Domain Name: Street Address 
Your domain name is the 
address people will 
remember. You buy it from a 
domain registrar (e.g., 
GoDaddy), which points the 
domain to your IP address. 
Ex: cardinalwebsolutions.com 
It’s like your street address. 
This is the address you will 
give to visitors.
DNS Records: Phonebook 
The DNS records are a list of entries 
connecting your domain or subdomains 
(ex. mail.yourdomain.com) to the exact 
IP address or server where they “live.” 
Ex: 
NAME TTL TYPE DATA 
www.example.com. 1800 A 198.154.222.141 
It’s like a phonebook – back when people 
actually used phonebooks. You can look 
up a person or business by name and find 
their address.
FTP: The Highway 
The FTP (File Transfer 
Protocol) or SFTP (SSH File 
Transfer Protocol) is how you 
move files between your 
computer and the server 
where the site is hosted. 
It’s like the highway that the 
moving truck takes to bring 
your stuff to your new house.
HTML: Framework 
HTML stands for Hyper 
Text Markup Language. 
HTML tags are the 
building blocks that 
make up the structure of 
your site. 
Ex: <p>Hello, world!</p> 
HTML is like the 
framework of your 
house: the foundation, 
walls, and roof.
CSS: Paint & Other Styling 
CSS stands for Cascading 
Style Sheets. It controls the 
appearance of HTML 
elements. CSS can be used to 
make a website responsive. 
Ex: p { padding: 10px; } 
CSS is your paint, style of 
doors, size of window frame, 
anything the changes the 
surface appearance of your 
home.
JavaScript: Gadgets 
JavaScript (JS) is a programming 
language that gives the website extra 
behaviors. It can be used for many 
things, such as changing content on a 
page, animating content, making 
content interactive, or tracking 
information. 
Ex: <script>document.write("<p>My 
First JavaScript</p>");</script> 
JavaScript is like the many gadgets you 
find in a home to make it more useful 
or enjoyable, such as clocks, 
calculators, TVs, or your security 
system.
Content: Furniture 
Your content consists of the 
text and images that fill in 
the framework of your 
website. 
Content is like furniture. It gives a room (or page) 
purpose. It should be relevant to the page it’s in and 
should fit appropriately – you wouldn’t put a toilet in the 
bedroom or try to fit a king-sized bed in the closet.
Links: Doors 
A link takes you from one page on 
your site to either another page 
on the same site, or a different 
site entirely. Links are created 
with the HTML anchor (or “a”) 
tag. 
Ex: <a 
href=“http://cardinalwebsolution 
s.com”>Our Website</a> 
Links are your doors. Make sure 
there’s a door to every room in 
your house so that your guests 
(and Google) can find their way!
Components of a Website
Components: Overview 
 Domain name 
 Hosting 
 Site Files 
 Database (optional) 
 CMS (optional) 
 Plugins (optional) 
 Browser * (not actually part of the website) 
Although these components are 
not required for all websites, 
they are strongly recommended 
for and are present in most 
modern websites.
Components: Domain name 
Your domain name is part of your URL. It is what 
people will type in the address bar to go your 
site. 
You buy it from a domain registrar, such as 
GoDaddy or NameCheap, and then you point it 
to your hosting account by entering the correct 
nameservers or altering the DNS records. 
Domain Ex: cardinalwebsolutions.com 
URL Ex: http://cardinalwebsolutions.com/about
Components: Hosting 
Your hosting account is rented space on a server. A 
server is a computer that holds your site files. 
You can purchase hosting from a company such as 
HostGator or BlueHost. There are many options, most 
of which also sell domain names, such as GoDaddy. 
You can also have your own server if needed. This gives 
you more flexibility, but also takes more work to 
manage.
Components: Hosting 
Like any computer, hosting servers run on different 
operating systems. Two of the most common 
operating systems for hosting servers are Apache 
(Linux) and Windows. 
Apache Windows 
Can run HTML Can run HTML 
More likely to use PHP More likely to use ASP.net 
Uses .htaccess file for redirects Does not use .htaccess file 
Typical URL: index.php Typical URL: default.asp 
Like all rules, you’re sure to find exceptions to this list – just use these as general guidelines.
Components: Hosting 
When you switch hosting accounts, you have 
to point your domain name to the new 
hosting account. 
After you make the switch, the changes need 
to propagate, or spread through the Internet, 
before you’ll see a difference. This can take 
anywhere from 10 minutes to 48 hours.
Components: Site Files 
Site files can include 
images, documents, 
templates, HTML files, 
anything you upload to 
your website. You can 
access the files through 
the FTP or a File Manager 
in the hosting account.
Components: Database 
A database is essentially a 
spreadsheet containing your 
website’s content and linking it 
together. For example, for a 
WordPress site, the database would 
contain tables for settings, posts, 
comments, users, etc. The website is 
coded to automatically pull this 
information into the template. 
When moving a website to a new hosting account, it is important to 
move both the site files and the database (if there is one).
Components: CMS 
A content management system (CMS) is a user 
friendly interface for making changes to a website. 
Any site using a CMS will also have a database, but not 
every site with a database will have a CMS. 
WordPress, Joomla, and Drupal are all popular CMSs. 
Ecommerce sites have their own type of CMS called an 
ecommerce platform. Magento is one of the most 
common, but the WooCommerce plugin combined 
with WordPress is also very popular.
Components: Plugins 
Most of the more common CMSs allow plugins, 3rd party 
extensions that add new functionality to the site or CMS. 
Plugins save a lot of time and money because you do not 
have to write your own code for the features you want. 
Although some advanced plugins require payment, 
many are free. 
Always do your research and read reviews before adding 
a plugin, and backup your site beforehand.
Components: Browser 
A browser is not actually part of 
your website; it is the program the 
visitor uses to view the site. 
Each browser renders code slightly 
differently, so it is important to test 
a site in multiple browsers before 
launching. 
Common Browsers 
(in order of market share) 
 Chrome 
 Internet Explorer 
 Firefox 
 Safari 
 Opera
In Conclusion
Review: What is a website? 
A website is a collection of files and sometimes 
a database stored on a hosting account and 
accessed by users via a domain name. It is 
viewed through a browser. 
Many websites are edited using a CMS, which 
may be bolstered by plugins. You may also have 
to transfer files directly using the FTP.

Contenu connexe

Tendances (20)

Web Design & Development - Session 1
Web Design & Development - Session 1Web Design & Development - Session 1
Web Design & Development - Session 1
 
What is internet
What is internetWhat is internet
What is internet
 
Search Engine ppt
Search Engine pptSearch Engine ppt
Search Engine ppt
 
world wide web
world wide webworld wide web
world wide web
 
WWW, Website & Webpage
WWW, Website & WebpageWWW, Website & Webpage
WWW, Website & Webpage
 
Introduction to Web Technology
Introduction to Web TechnologyIntroduction to Web Technology
Introduction to Web Technology
 
WWW, WEB BROWSER AND SEARCH ENGINE
WWW, WEB BROWSER AND SEARCH ENGINEWWW, WEB BROWSER AND SEARCH ENGINE
WWW, WEB BROWSER AND SEARCH ENGINE
 
What is web portal
What is web portalWhat is web portal
What is web portal
 
Web crawler
Web crawlerWeb crawler
Web crawler
 
The World Wide Web Power Point
The World Wide Web Power PointThe World Wide Web Power Point
The World Wide Web Power Point
 
Client and server side scripting
Client and server side scriptingClient and server side scripting
Client and server side scripting
 
First step to internet
First step to internet First step to internet
First step to internet
 
World wide web
World wide webWorld wide web
World wide web
 
Effective Internet Searching
Effective Internet SearchingEffective Internet Searching
Effective Internet Searching
 
Basic Web Concepts
Basic Web ConceptsBasic Web Concepts
Basic Web Concepts
 
common computer terminology
common computer terminologycommon computer terminology
common computer terminology
 
World Wide Web and Internet
World Wide Web and InternetWorld Wide Web and Internet
World Wide Web and Internet
 
Formatting Text
Formatting TextFormatting Text
Formatting Text
 
Introduction to spreadsheets
Introduction to spreadsheetsIntroduction to spreadsheets
Introduction to spreadsheets
 
Presentation on web browser
Presentation on web browserPresentation on web browser
Presentation on web browser
 

En vedette

En vedette (6)

5 Most Common SEM/PPC Mistakes
5 Most Common SEM/PPC Mistakes 5 Most Common SEM/PPC Mistakes
5 Most Common SEM/PPC Mistakes
 
Paa pictures about me
Paa pictures about mePaa pictures about me
Paa pictures about me
 
Six way to engage your patients with Social Media Marketing
Six way to engage your patients with Social Media MarketingSix way to engage your patients with Social Media Marketing
Six way to engage your patients with Social Media Marketing
 
Marketing to Millennials: Insights for the B2B World
Marketing to Millennials: Insights for the B2B WorldMarketing to Millennials: Insights for the B2B World
Marketing to Millennials: Insights for the B2B World
 
Keeping up with Google
Keeping up with Google  Keeping up with Google
Keeping up with Google
 
Anechoic chamber
Anechoic chamberAnechoic chamber
Anechoic chamber
 

Similaire à What is a Website?

How websites and search engines work
How websites and search engines workHow websites and search engines work
How websites and search engines workBrian Duffy
 
Topic 1introduction into wordpress cms tutorial
Topic 1introduction into wordpress cms tutorialTopic 1introduction into wordpress cms tutorial
Topic 1introduction into wordpress cms tutorialAhmed Fatoh
 
Web hosting presentations by hostindia.net
Web hosting presentations by hostindia.netWeb hosting presentations by hostindia.net
Web hosting presentations by hostindia.netHostin Services Pvt Ltd
 
Hostgator cPanel - An Overview
Hostgator cPanel - An OverviewHostgator cPanel - An Overview
Hostgator cPanel - An Overviewwhatishostgator
 
Ncp computer appls web tech asish
Ncp computer appls  web tech asishNcp computer appls  web tech asish
Ncp computer appls web tech asishNCP
 
Websites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly WebsitesWebsites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly Websiteswebsiteunlimited
 
Les Basiques - Web Développement HTML5, CSS3, JS et PHP
Les Basiques - Web  Développement HTML5, CSS3, JS et PHPLes Basiques - Web  Développement HTML5, CSS3, JS et PHP
Les Basiques - Web Développement HTML5, CSS3, JS et PHPHamdi Hmidi
 
Domain Name and Web Hosting: What Are the Differences? 
Domain Name and Web Hosting: What Are the Differences? Domain Name and Web Hosting: What Are the Differences? 
Domain Name and Web Hosting: What Are the Differences? PaulDonahue16
 
Introduction to web designing
Introduction to web designingIntroduction to web designing
Introduction to web designingRajat Shah
 
Colocation Dedicated / VPS / Cloud Servers Data Centers - IT4INT Pvt Ltd Mark...
Colocation Dedicated / VPS / Cloud Servers Data Centers - IT4INT Pvt Ltd Mark...Colocation Dedicated / VPS / Cloud Servers Data Centers - IT4INT Pvt Ltd Mark...
Colocation Dedicated / VPS / Cloud Servers Data Centers - IT4INT Pvt Ltd Mark...It4int
 
Just dev it presenation modified word press 101
Just dev it presenation   modified word press 101Just dev it presenation   modified word press 101
Just dev it presenation modified word press 101roguevoice
 

Similaire à What is a Website? (20)

Guide Hosting Dictionary
Guide Hosting DictionaryGuide Hosting Dictionary
Guide Hosting Dictionary
 
Websites 101
Websites 101Websites 101
Websites 101
 
How websites and search engines work
How websites and search engines workHow websites and search engines work
How websites and search engines work
 
Topic 1introduction into wordpress cms tutorial
Topic 1introduction into wordpress cms tutorialTopic 1introduction into wordpress cms tutorial
Topic 1introduction into wordpress cms tutorial
 
Web Hosting.pdf
Web Hosting.pdfWeb Hosting.pdf
Web Hosting.pdf
 
Web development
Web developmentWeb development
Web development
 
Web hosting presentations by hostindia.net
Web hosting presentations by hostindia.netWeb hosting presentations by hostindia.net
Web hosting presentations by hostindia.net
 
Web hosting Introduction- MilesWeb
Web hosting  Introduction- MilesWebWeb hosting  Introduction- MilesWeb
Web hosting Introduction- MilesWeb
 
Website 101
Website 101Website 101
Website 101
 
Web Designing
Web Designing Web Designing
Web Designing
 
Hostgator cPanel - An Overview
Hostgator cPanel - An OverviewHostgator cPanel - An Overview
Hostgator cPanel - An Overview
 
Ncp computer appls web tech asish
Ncp computer appls  web tech asishNcp computer appls  web tech asish
Ncp computer appls web tech asish
 
Websites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly WebsitesWebsites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly Websites
 
Les Basiques - Web Développement HTML5, CSS3, JS et PHP
Les Basiques - Web  Développement HTML5, CSS3, JS et PHPLes Basiques - Web  Développement HTML5, CSS3, JS et PHP
Les Basiques - Web Développement HTML5, CSS3, JS et PHP
 
Domain Name and Web Hosting: What Are the Differences? 
Domain Name and Web Hosting: What Are the Differences? Domain Name and Web Hosting: What Are the Differences? 
Domain Name and Web Hosting: What Are the Differences? 
 
Introduction to web designing
Introduction to web designingIntroduction to web designing
Introduction to web designing
 
Webmaster
WebmasterWebmaster
Webmaster
 
Webmaster
WebmasterWebmaster
Webmaster
 
Colocation Dedicated / VPS / Cloud Servers Data Centers - IT4INT Pvt Ltd Mark...
Colocation Dedicated / VPS / Cloud Servers Data Centers - IT4INT Pvt Ltd Mark...Colocation Dedicated / VPS / Cloud Servers Data Centers - IT4INT Pvt Ltd Mark...
Colocation Dedicated / VPS / Cloud Servers Data Centers - IT4INT Pvt Ltd Mark...
 
Just dev it presenation modified word press 101
Just dev it presenation   modified word press 101Just dev it presenation   modified word press 101
Just dev it presenation modified word press 101
 

Dernier

The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024CIO Business World
 
From Chance to Choice - Tactical Link Building for International SEO
From Chance to Choice - Tactical Link Building for International SEOFrom Chance to Choice - Tactical Link Building for International SEO
From Chance to Choice - Tactical Link Building for International SEOSzymon Słowik
 
5 Digital Marketing Tips | Devherds Software Solutions
5 Digital Marketing Tips | Devherds Software Solutions5 Digital Marketing Tips | Devherds Software Solutions
5 Digital Marketing Tips | Devherds Software SolutionsDevherds Software Solutions
 
TAM AdEx 2023 Cross Media Advertising Recap - Auto Sector
TAM AdEx 2023 Cross Media Advertising Recap - Auto SectorTAM AdEx 2023 Cross Media Advertising Recap - Auto Sector
TAM AdEx 2023 Cross Media Advertising Recap - Auto SectorSocial Samosa
 
Digital Marketing in 5G Era - Digital Transformation in 5G Age
Digital Marketing in 5G Era - Digital Transformation in 5G AgeDigital Marketing in 5G Era - Digital Transformation in 5G Age
Digital Marketing in 5G Era - Digital Transformation in 5G AgeDigiKarishma
 
The power of SEO-driven market intelligence
The power of SEO-driven market intelligenceThe power of SEO-driven market intelligence
The power of SEO-driven market intelligenceHinde Lamrani
 
The Impact of Digital Technologies
The Impact of Digital Technologies The Impact of Digital Technologies
The Impact of Digital Technologies bruguardarib
 
Codes and Conventions of Film Magazine Websites.pptx
Codes and Conventions of Film Magazine Websites.pptxCodes and Conventions of Film Magazine Websites.pptx
Codes and Conventions of Film Magazine Websites.pptxGeorgeCulica
 
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the InternetExploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internetnehapardhi711
 
A Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | BanyanbrainA Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | BanyanbrainBanyanbrain
 
Influencer Marketing Power point presentation
Influencer Marketing  Power point presentationInfluencer Marketing  Power point presentation
Influencer Marketing Power point presentationdgtivemarketingagenc
 
Digital Marketing Courses In Pune- school Of Internet Marketing
Digital Marketing Courses In Pune- school Of Internet MarketingDigital Marketing Courses In Pune- school Of Internet Marketing
Digital Marketing Courses In Pune- school Of Internet MarketingShauryaBadaya
 
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...Ahrefs
 
top marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar Ctop marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar CManojkumar C
 
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdfResearch and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdfVWO
 
Exploring The World Of Adult Ad Networks.pdf
Exploring The World Of Adult Ad Networks.pdfExploring The World Of Adult Ad Networks.pdf
Exploring The World Of Adult Ad Networks.pdfadult marketing
 
2024's Top PPC Tactics: Triple Your Google Ads Local Leads
2024's Top PPC Tactics: Triple Your Google Ads Local Leads2024's Top PPC Tactics: Triple Your Google Ads Local Leads
2024's Top PPC Tactics: Triple Your Google Ads Local LeadsSearch Engine Journal
 
Prezentare Brandfluence 2023 - Social Media Trends
Prezentare Brandfluence 2023 - Social Media TrendsPrezentare Brandfluence 2023 - Social Media Trends
Prezentare Brandfluence 2023 - Social Media TrendsCristian Manafu
 
Fueling A_B experiments with behavioral insights (1).pdf
Fueling A_B experiments with behavioral insights (1).pdfFueling A_B experiments with behavioral insights (1).pdf
Fueling A_B experiments with behavioral insights (1).pdfVWO
 
When to use Machine Learning Models in SEO and Which ones to use - Lazarina S...
When to use Machine Learning Models in SEO and Which ones to use - Lazarina S...When to use Machine Learning Models in SEO and Which ones to use - Lazarina S...
When to use Machine Learning Models in SEO and Which ones to use - Lazarina S...LazarinaStoyanova
 

Dernier (20)

The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
 
From Chance to Choice - Tactical Link Building for International SEO
From Chance to Choice - Tactical Link Building for International SEOFrom Chance to Choice - Tactical Link Building for International SEO
From Chance to Choice - Tactical Link Building for International SEO
 
5 Digital Marketing Tips | Devherds Software Solutions
5 Digital Marketing Tips | Devherds Software Solutions5 Digital Marketing Tips | Devherds Software Solutions
5 Digital Marketing Tips | Devherds Software Solutions
 
TAM AdEx 2023 Cross Media Advertising Recap - Auto Sector
TAM AdEx 2023 Cross Media Advertising Recap - Auto SectorTAM AdEx 2023 Cross Media Advertising Recap - Auto Sector
TAM AdEx 2023 Cross Media Advertising Recap - Auto Sector
 
Digital Marketing in 5G Era - Digital Transformation in 5G Age
Digital Marketing in 5G Era - Digital Transformation in 5G AgeDigital Marketing in 5G Era - Digital Transformation in 5G Age
Digital Marketing in 5G Era - Digital Transformation in 5G Age
 
The power of SEO-driven market intelligence
The power of SEO-driven market intelligenceThe power of SEO-driven market intelligence
The power of SEO-driven market intelligence
 
The Impact of Digital Technologies
The Impact of Digital Technologies The Impact of Digital Technologies
The Impact of Digital Technologies
 
Codes and Conventions of Film Magazine Websites.pptx
Codes and Conventions of Film Magazine Websites.pptxCodes and Conventions of Film Magazine Websites.pptx
Codes and Conventions of Film Magazine Websites.pptx
 
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the InternetExploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internet
 
A Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | BanyanbrainA Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | Banyanbrain
 
Influencer Marketing Power point presentation
Influencer Marketing  Power point presentationInfluencer Marketing  Power point presentation
Influencer Marketing Power point presentation
 
Digital Marketing Courses In Pune- school Of Internet Marketing
Digital Marketing Courses In Pune- school Of Internet MarketingDigital Marketing Courses In Pune- school Of Internet Marketing
Digital Marketing Courses In Pune- school Of Internet Marketing
 
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...
What I learned from auditing over 1,000,000 websites - SERP Conf 2024 Patrick...
 
top marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar Ctop marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar C
 
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdfResearch and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
 
Exploring The World Of Adult Ad Networks.pdf
Exploring The World Of Adult Ad Networks.pdfExploring The World Of Adult Ad Networks.pdf
Exploring The World Of Adult Ad Networks.pdf
 
2024's Top PPC Tactics: Triple Your Google Ads Local Leads
2024's Top PPC Tactics: Triple Your Google Ads Local Leads2024's Top PPC Tactics: Triple Your Google Ads Local Leads
2024's Top PPC Tactics: Triple Your Google Ads Local Leads
 
Prezentare Brandfluence 2023 - Social Media Trends
Prezentare Brandfluence 2023 - Social Media TrendsPrezentare Brandfluence 2023 - Social Media Trends
Prezentare Brandfluence 2023 - Social Media Trends
 
Fueling A_B experiments with behavioral insights (1).pdf
Fueling A_B experiments with behavioral insights (1).pdfFueling A_B experiments with behavioral insights (1).pdf
Fueling A_B experiments with behavioral insights (1).pdf
 
When to use Machine Learning Models in SEO and Which ones to use - Lazarina S...
When to use Machine Learning Models in SEO and Which ones to use - Lazarina S...When to use Machine Learning Models in SEO and Which ones to use - Lazarina S...
When to use Machine Learning Models in SEO and Which ones to use - Lazarina S...
 

What is a Website?

  • 1. Websites 101: What is a website? By: Caity Cogdell
  • 2. Your Home on the Web
  • 3. Your Website: Your House Your website is your home on the web. In fact, there are many helpful ways in which we can think of a website in terms of a house.
  • 4. Hosting: The Empty Lot A hosting account is a server (a computer) where your site files are stored. The hosting account is like an empty lot where you will build your house.
  • 5. IP Address: Latitude/Longitude The IP address is a string of numbers that give the exact address of your hosting account. Ex: 198.154.222.140 It’s like latitude and longitude – an accurate description of where your house is, but not very useful for telling someone how to get there.
  • 6. Domain Name: Street Address Your domain name is the address people will remember. You buy it from a domain registrar (e.g., GoDaddy), which points the domain to your IP address. Ex: cardinalwebsolutions.com It’s like your street address. This is the address you will give to visitors.
  • 7. DNS Records: Phonebook The DNS records are a list of entries connecting your domain or subdomains (ex. mail.yourdomain.com) to the exact IP address or server where they “live.” Ex: NAME TTL TYPE DATA www.example.com. 1800 A 198.154.222.141 It’s like a phonebook – back when people actually used phonebooks. You can look up a person or business by name and find their address.
  • 8. FTP: The Highway The FTP (File Transfer Protocol) or SFTP (SSH File Transfer Protocol) is how you move files between your computer and the server where the site is hosted. It’s like the highway that the moving truck takes to bring your stuff to your new house.
  • 9. HTML: Framework HTML stands for Hyper Text Markup Language. HTML tags are the building blocks that make up the structure of your site. Ex: <p>Hello, world!</p> HTML is like the framework of your house: the foundation, walls, and roof.
  • 10. CSS: Paint & Other Styling CSS stands for Cascading Style Sheets. It controls the appearance of HTML elements. CSS can be used to make a website responsive. Ex: p { padding: 10px; } CSS is your paint, style of doors, size of window frame, anything the changes the surface appearance of your home.
  • 11. JavaScript: Gadgets JavaScript (JS) is a programming language that gives the website extra behaviors. It can be used for many things, such as changing content on a page, animating content, making content interactive, or tracking information. Ex: <script>document.write("<p>My First JavaScript</p>");</script> JavaScript is like the many gadgets you find in a home to make it more useful or enjoyable, such as clocks, calculators, TVs, or your security system.
  • 12. Content: Furniture Your content consists of the text and images that fill in the framework of your website. Content is like furniture. It gives a room (or page) purpose. It should be relevant to the page it’s in and should fit appropriately – you wouldn’t put a toilet in the bedroom or try to fit a king-sized bed in the closet.
  • 13. Links: Doors A link takes you from one page on your site to either another page on the same site, or a different site entirely. Links are created with the HTML anchor (or “a”) tag. Ex: <a href=“http://cardinalwebsolution s.com”>Our Website</a> Links are your doors. Make sure there’s a door to every room in your house so that your guests (and Google) can find their way!
  • 14. Components of a Website
  • 15. Components: Overview  Domain name  Hosting  Site Files  Database (optional)  CMS (optional)  Plugins (optional)  Browser * (not actually part of the website) Although these components are not required for all websites, they are strongly recommended for and are present in most modern websites.
  • 16. Components: Domain name Your domain name is part of your URL. It is what people will type in the address bar to go your site. You buy it from a domain registrar, such as GoDaddy or NameCheap, and then you point it to your hosting account by entering the correct nameservers or altering the DNS records. Domain Ex: cardinalwebsolutions.com URL Ex: http://cardinalwebsolutions.com/about
  • 17. Components: Hosting Your hosting account is rented space on a server. A server is a computer that holds your site files. You can purchase hosting from a company such as HostGator or BlueHost. There are many options, most of which also sell domain names, such as GoDaddy. You can also have your own server if needed. This gives you more flexibility, but also takes more work to manage.
  • 18. Components: Hosting Like any computer, hosting servers run on different operating systems. Two of the most common operating systems for hosting servers are Apache (Linux) and Windows. Apache Windows Can run HTML Can run HTML More likely to use PHP More likely to use ASP.net Uses .htaccess file for redirects Does not use .htaccess file Typical URL: index.php Typical URL: default.asp Like all rules, you’re sure to find exceptions to this list – just use these as general guidelines.
  • 19. Components: Hosting When you switch hosting accounts, you have to point your domain name to the new hosting account. After you make the switch, the changes need to propagate, or spread through the Internet, before you’ll see a difference. This can take anywhere from 10 minutes to 48 hours.
  • 20. Components: Site Files Site files can include images, documents, templates, HTML files, anything you upload to your website. You can access the files through the FTP or a File Manager in the hosting account.
  • 21. Components: Database A database is essentially a spreadsheet containing your website’s content and linking it together. For example, for a WordPress site, the database would contain tables for settings, posts, comments, users, etc. The website is coded to automatically pull this information into the template. When moving a website to a new hosting account, it is important to move both the site files and the database (if there is one).
  • 22. Components: CMS A content management system (CMS) is a user friendly interface for making changes to a website. Any site using a CMS will also have a database, but not every site with a database will have a CMS. WordPress, Joomla, and Drupal are all popular CMSs. Ecommerce sites have their own type of CMS called an ecommerce platform. Magento is one of the most common, but the WooCommerce plugin combined with WordPress is also very popular.
  • 23. Components: Plugins Most of the more common CMSs allow plugins, 3rd party extensions that add new functionality to the site or CMS. Plugins save a lot of time and money because you do not have to write your own code for the features you want. Although some advanced plugins require payment, many are free. Always do your research and read reviews before adding a plugin, and backup your site beforehand.
  • 24. Components: Browser A browser is not actually part of your website; it is the program the visitor uses to view the site. Each browser renders code slightly differently, so it is important to test a site in multiple browsers before launching. Common Browsers (in order of market share)  Chrome  Internet Explorer  Firefox  Safari  Opera
  • 26. Review: What is a website? A website is a collection of files and sometimes a database stored on a hosting account and accessed by users via a domain name. It is viewed through a browser. Many websites are edited using a CMS, which may be bolstered by plugins. You may also have to transfer files directly using the FTP.