Hi @Whistler1 !
I think your page looks good.
Building your first form can be tricky.
You might consider taking one section of it and trying to refactor it without as many divs and li tags.
This could be one example.
<div class="flex">
<label for="name" id="name-label">Name
<input type="text" class="personal-info__data" id="name" name="name" placeholder="Name" required>
</label>
<label for="email" id="email-label">Email
<input type="email" class="personal-info__data" id="email" name="email" placeholder="Email@" required>
</label>
<label for="number" id="number-label">Age
<input type="number" class="personal-info__data" id="number" name="age" min="1" max="115" placeholder="25" required>
</label>
</div>
.flex {
display:flex;
flex-direction:column;
}
Just a thought ![]()
You could have a container for the inputs and then place that input container and image inside a div and use display:flex;
The projects are meant to be way more time consuming than the challenges.
So that is completely normal.
The new version of the curriculum will replace the challenges with mini projects followed by the 5 certification projects at the end.
I don’t see anything wrong with learning git and github now.
That will give you plenty of practice to start working with version control and get familiar with github.
There are plenty of great resources to start learning git.
I don’t see anything wrong with putting your beginner projects on github.
When you are ready to start looking for jobs then you can choose to display only your top repos on your profile page.
Hope that helps!