What does it mean to work digitally? From Markdown to the language of the web
Who wants to volunteer to share their code?
Last week we learned about Markdown. This week you learned about HTML.
So what is a Markup language?
Bonus if you can do it exclusively in the terminal!
More bonus if you can do it exclusively in the terminal!
What tags could we add to make our content more organized?
What happens if we add <p> and </p> tags around our text?
<p></p>

HTML elements can have attributes—extra information about the element.

This diagram is also from the Mozilla docs and you can read more about how HTML elements can also have attributes here.
href attribute?Bonus what sorts of tags do we use href with?
Understanding these limitations is important as we start to work with HTML and other web technologies. For more detailed information, I recommend reading through this introduction from Mozilla on HTML.
How could we change the color of the text?
What do we see in the inspector?
<!DOCTYPE html>?
style attribute vs. tag?To learn more about this particular code, read the callout Deep Dive Into CSS on the course website.
A great resource for learning more about CSS is the Mozilla docs https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Styling_basics/What_is_CSS.
What is the tag to include JavaScript in an HTML document?

Learn more in the callout on the Deep Dive Into JavaScript on our course website.
What is this code doing?
Document Object Model
html
├── head
│ └── title
└── body
├── h1
├── p
└── ul
├── li
└── li
| Technology | Purpose |
|---|---|
| HTML | Structure - what things are |
| CSS | Presentation - how things look |
| JavaScript | Behavior - what things do |
Create a source-and-style folder with:
README.md assessing one cultural websiteindex.html presenting one digitized cultural objectimages folder, if you use themai-chat-log.md, if you use AIInclude:
Push your work to your is310-coding-assignments repository.
These Git commands work in macOS, Linux, WSL, and PowerShell.
To dos in your breakout rooms: