Recent Comments
No comments to show.
Monthly Archives: January 2022
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
How to save word documents in GIT
How to use git for version control of files. Open terminal of the directory where the content exists. Right click on the directory, and choose “open in terminal”. (blog) Type “git status” then press enter. That tells you what you … 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
The Site
Devin stepped off the airship onto a ramp that he walked down towards the new construction site. Devin is a 37 year old machine repairman. It seems that some of the machinery is running slower than normal. He was brought … 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