Authoring a Website Flashcards
Name 6 common web browsers.
Google Chrome, Microsoft Edge, Internet Explorer, Safari, Opera, Firefox.
How does a web browser affect the performance/design of a website?
Older web browsers, such as Internet Explorer, don’t support newer languages like HTML5 and CSS3. Older web browsers will ignore any code it doesn’t understand, so the website is displayed incorrectly.
Web browsers also have different features and user interfaces. These features include bookmarks, find in page, plugins/extensions, etc.
Name 3 common operating systems.
Windows 10, macOS, Linux.
How does an operating system affect the performance/design of a website?
All operating systems have different user interfaces, fonts and designs for websites. For example, a drop down menu will look different depending on your operating system. Apple computers (and other Apple devices) use Retina Display in their screens. Retina Display uses a greater range of colours and a higher pixel density than most other screens, making smaller text and images look less pixelated. Digital designers often use Apple computers for this reason.
What is an operating system?
An Operating System is the interface between the user and the hardware of a computer.
What does CLI and GUI stand for?
CLI - Command Line Interface. (e.g. Linux)
GUI - Graphical User Interface. (e.g. Windows 10)
How does a device affect the performance/design of a website?
Devices have different screen sizes. Smaller screen sizes can push content off the sides of the screen, forcing users to scroll horizontally. Instead, websites should be designed with responsive website design, so that all of the content is displayed correctly (no horizontal scrolling)
What is responsive website design?
Responsive website design allows webpages to be displayed correctly across many different devices. This usually involves elements being resized based on the screen/window size. Media tags can also be used to change the layout of the webpage based on the screen/window size.
What is bandwidth, and how does it affect the performance/design of a website?
Bandwidth is the amount of information that can be sent/received over a given timeframe. Bandwidth can affect how fast websites are loaded.
What is the main difference between HTTP and HTTPS?
Webpages that use the HTTPS scheme encrypt data on the webpage and data that is entered by the user. You should never enter your credit card details on a website that doesn’t start with HTTPS.
What are the different parts of a URL called? What do they mean?
scheme://sitelocation:port/documentlocation?fragment
Scheme - The way a webpage is accessed (usually HTTP or HTTPS)
Site Location - Where a server is located on the internet
Port Number (optional) - Usually port 80 for HTTP or port 443 for HTTPS.
Document Location - Where the document/webpage is located on the server. Slashes are used to represent folders.
Fragment Identifier - Provides additional information about the page. e.g. Google query
What affects the speed at which a website is loaded?
The bandwidth of the access point (larger bandwidth = faster), the distance from the device to the access point (closer = faster), the amount of devices connected to the access point (less devices = faster), the amount of access points nearby (more access points = more traffic = slower), the file sizes of the webpage and any images on the webpage (larger file sizes = slower) and if the connection is wired or wireless (wired = faster).
What is the difference between HTML and HTML5?
HTML5 added additional functionality and support for file types, such as SVG.
What does HTML stand for? What is it used for?
HTML stands for Hyper-Text Markup Language. It is used to structure the webpage.
What is the difference between CSS and CSS3?
CSS3 added more support for responsive website design (such as media tags)