Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

M2 revisions #343

Merged
merged 8 commits into from
Oct 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Hide wireframe solution so it can be done together as a class
Heather Faerber committed Oct 23, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 2aa82099d4ae287325ffd5bde1a8b81b762a4c31
18 changes: 15 additions & 3 deletions module2/lessons/html_fundamentals.md
Original file line number Diff line number Diff line change
@@ -67,13 +67,23 @@ Type both opening and closing tags before typing content to avoid making silly m

## Elements & Tags Example

Let's start by looking at this page:
Let's start by looking at this page. We can "wireframe" a plan for which HTML elements we will use to build this page.
- What are the general sections/areas that make up this page?
- What are all the individual pieces of content within those areas?
- What are the most semantic elements we can choose for each?


![unmarked page](./assets/images/html/unmarked_html.png)

Notice all of the HTML elements that exist on the page:
<section class="dropdown">
### Possible WireFrame Solution

![annotated page](./assets/images/html/annotated_html.png)
</section>

<section class="dropdown">
### Possible HTML Solution

Now, let's look at what that HTML looks like:
```html
<nav>
<img src="./turing-school-logo" alt="Turing School logo" />
@@ -95,6 +105,8 @@ Now, let's look at what that HTML looks like:
<button type="button" name="browse-button">BROWSE GRADS FOR HIRE</button>
</main>
```
</section>

<section class="call-to-action">
### Partner Practice