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

C22 Group-fansite: Ajar, Lorraine, Olga and Priyanka #5

Open
wants to merge 52 commits into
base: main
Choose a base branch
from

Conversation

PriyankaKaramchandani
Copy link

No description provided.

PriyankaKaramchandani and others added 30 commits November 13, 2024 09:19
This reverts commit f547f6d.
…o centering of nav tabs done.Pronouns of Mikelle change done in index.html
…-fansite

Implement flex box in fun_facts. Add nav tabs to go to other pages. No centering of nav tabs done.Pronouns of Mikelle change done in index.html
Copy link

@mikellewade mikellewade left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work, everyone! Was a pleasure to look through this site! :)

</head>
<body>
<header>
<div id="header">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should aim to have more unique names, especially when it comes to id tags. If you just need to select the div element that is a descendent of a header tag what kind of selector could you build?

Comment on lines +12 to +22
<header>
<div id="header">
<h1>The ADA Hall of Fame</h1>
</div>
<div>
<ul class="main_page_links">
<li><a href="./pages/education.html">Education</a></li>
<li><a href="./pages/hobbies.html">Hobbies</a></li>
<li><a href="./pages/fun_facts.html">Fun Facts</a></li>
</ul>
</div>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since this is a navigation bar, we could put this in a nav tag.

</header>
<main>
<section class="instructors">
<nav class="nav_adrian">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nav tags aren't usually used in this sense, this feels more like a section to me? nav tags are for links that help the user navigate to different pages on the sites.

<h4>Instructor</h4>
</nav>
<nav class="nav_ansel">
<img src="images/Ansel-300x300.png" alt="Hey, Ansel!" width="300" height="200">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Being that you want all these img tags to have the same width and height, what could we do to make the code more DRY?

<h4>Instructor</h4>
</nav>
<nav class="nav_ada">
<img src="images/ada-icon.png" alt="Ada Icon" width="300" height="200">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We want to make sure that we have more descriptive alt tags, especially for users who are using screen readers.

@@ -0,0 +1,51 @@
.education-container{

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
.education-container{
.education-container {

grid-template-columns: 1fr 1fr 1fr;
}

.ada_image{

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
.ada_image{
.ada_image {

color: blue;
}

nav{

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
nav{
nav {

margin-bottom: 30px;
}

a:hover{

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
a:hover{
a:hover {

color: pink;
}

a:visited{

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
a:visited{
a:visited {

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants