Recent Comments
No comments to show.
Tag Archives: html
Hyperlinks
To create a hyperlink in HTML, you need an anchor tab followed by a href, like so: <a href=”https://developer.mozilla.org/en-US/docs/Web/HTML”>MDN Web Docs</a> That will look like MDN Web Docs (in blue or purple and underlined) on your website. When someone clicks … Continue reading
Images and Attributes
Images To show an image in HTML, you need to : <img src=”title of picture.jpg” alt=”description of picture” height=”50” width=”50 /> In English, you need to type the image source; the alternative: so it is able to be read to … Continue reading
Text Elements and Lists
Text Elements – Section 2 We learned about <strong> instead of <b> to bold text. And <em> emphasize instead of <i> to italicize text. Also, about headers <h1> to <h6> <! – – to commit out something – – > … Continue reading
Basic HTML
This is the basic HTML you need to show on a web browser. <!DOCTYPE html> <html> <head> <title>HTML Fundamentals</title> </head> <body> <h1>HTML Fundamentals</h1> </body> </html>
Set up Visual Studio Code Editor
Set up Visual Studio Code Editor Installed Prettier. Installed One Monokai Theme color editor. Made and ran html in both Firefox and Brave browsers. Go to Explorer, or to the double page icon on left side of Visual Studio Code. … Continue reading
Day 1
Static or Dynamic web sites. Static web sites just receive the html, css, and javascript directly from the web server. Dynamic web sites are constantly changing, and pulling information using Python, etc. from the web server to show on your … Continue reading