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

CON-2948 Markdown DPXAI: Quest00-Ex01 #2645

Merged
merged 5 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
rust/**/target/
js/soluss
**/.DS_Store
nprimo marked this conversation as resolved.
Show resolved Hide resolved
File renamed without changes.
41 changes: 41 additions & 0 deletions subjects/DPxAI/call_it/README.md
nprimo marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
## Call it

> Brainpower mode

### Context

Congrats! You created the very first base for your entity and you witnessed its appearance in the Digital
World - your browser.. However, it is still a tiny seed of the marvelous thing it could become. Be patient;
there's still a bit of work to do.

### Directions

First of all, instead of writing down what things are _(you're not writing down on your hand the word 'hand',
are you?)_, we're going to identify them semantically with the very practical [id
attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attri butes/id). This `id` has to be a **unique**
identifier on your webpage, allowing you to target your element when needed. You can compare it to your name and
surname; this is what identifies you to other people, and if someone's calling you by your name, you answer.

### Instructions

So let's identify the 3 elements we have so far: in each section, remove the text content from inside the tag
and set it as the value of the `id` attribute of the corresponding `section` text.

**Run your code in the editor preview:** \
you don't see _anything_? Don't freak out! \
Inspect the HTML that has been created with your
[browser inspector tool](https://developer.mozilla.org/en-US/docs/Learn/Common_questions/What_are_browser_developer_tools),
and if you done it correctly, you should see the 3 sections inside the `body` with the `id` attribute set in
your HTML structure.

### Code examples

To set the `id` of a `div` tag to `"my-lil-div"`:

```html
<div id="my-lil-div"></div>
```

### Notions

- [`id` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id)