Category: CSS
-
Server-side vs. client-side
—
As you are learning HTML, JavaScript and CSS, you are going to realize that there are things that webpages do, that you can’t do with HTML, JS or CSS. At that point, it is time to understand the server-side vs. client-side of the web. All of the web development you have been doing so far,…
-
Troubleshooting your webpage
—
This code troubleshooting guide emphasizes the importance of clear formatting, comments, and variable names. It also highlights common HTML and JavaScript errors to watch out for and suggests using the browser console for error messages and variable value checks. Proper formatting and console usage can greatly facilitate code troubleshooting.
-
Adjusting the look of a hyperlink
—
In HTML, a hyperlink is specified by the tag <a>. Here is an example: By default, the text in a hyperlink is blue and underlined. However, you can use CSS to change the appearance of a hyperlink. For example, This will change the text of the hyperlink be red (color) and to NOT be underlined…