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

Who's there? Ulrika Gålnander #330

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# Project Name

Replace this readme with your own information about your project.

Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
Finishing the Guess Who-game with javascript.

## The problem

Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next?
I still feel like I just start to get the things we're doing at the end of the week, when it's time to look to next week - and I don't feel like I have "harnessed" the power of the previous lessons - meaning I don't feel like I know what to do.

That being said, this week was more fluent once I stopped thinking I needed to do things a certain way. I think assuming everyone sits down and just writes code that works, as Mozart by the piano, is maybe true for some, but I've let go of the idea that that should be me at this stage (maybe in the future, but no rush)

There was a lot of information that I felt was good but also sometimes not very clear, meaning I felt I got more confused by the instructions than if they hadn't been there. Maybe if I had time to go back, they would make more sense.

ChatGPT has been a great support in finding small typos and faults that I haven't caught but also to give a general overview of my code. My team has been great and supportive as always.

## View it live

Have you deployed your project somewhere? Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about.
https://fluffy-sunshine-7b9311.netlify.app

19 changes: 13 additions & 6 deletions code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project Name</title>
<title>Who's There?</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
Expand All @@ -24,16 +24,23 @@ <h1>Does the person have</h1>

<select title="questions" id="questions">
<optgroup label="hair">
<option value="brown">brown hair</option>
<option value="yellow">yellow hair</option>
<!-- Add the rest of hair colors as options -->
<option value="brown hair">Brown hair</option>
<option value="yellow hair">Yellow hair</option>
<option value="black hair">Black hair</option>
<option value="orange hair">Orange hair</option>
<option value="grey hair">Grey hair</option>
<option value="white hair">White hair</option>
<option value="hidden hair">No visible hairstyle</option>
</optgroup>
<optgroup label="eyes">
<option value="hidden">hidden eyes</option>
<option value="hidden">Hidden eyes</option>
<option value="blue">Blue eyes</option>
<option value="green">Green eyes</option>
<!-- Add the rest of eye colors as options -->
</optgroup>
<optgroup label="accessories">
<option value="glasses">glasses</option>
<option value="glasses">Wearing glasses</option>
<option value="a hat">Wearing hat</option>
<!-- Add the other accessory option here. (hat) -->
</optgroup>
<optgroup label="other">
Expand Down
Loading