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

Diana's Portfolio #64

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Diana's Portfolio #64

wants to merge 4 commits into from

Conversation

DLozanoC
Copy link

Personal Portfolio Site

Congratulations! You're submitting your assignment!

Comprehension Questions

Question Answer
Did you have to resolve any issues when running the HTML Validator? If so, what were they?
Why is it important to consider and use semantic HTML?
How did you decide to structure your CSS?
What was the most challenging piece of this assignment?
Describe one area that you gained more clarity on when completing this assignment
Optional
Did you deploy to GitHub Pages? If so, what is the URL to your website?

Copy link

@CheezItMan CheezItMan left a comment

Choose a reason for hiding this comment

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

The site looks ok, but I have no way to navigate between pages. You also did not use CSS Grid at all. For anyone nonsighted, this would be an impossible site to navigate. Also only the homepage has the links to travel around, so I have to use the back button to travel. You also didn't use an HTML/CSS validator to check your code.

Other than that the site looks ok. I made a number of suggestions and most apply to all the pages as you used the dog pages as a template.

🟡

margin-right: auto;
height: 70%;
width: 70%;
opacity: 100;

Choose a reason for hiding this comment

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

I'm pretty sure this needs to be a decimal number like 0.87. I think it should be 0 <= x <= 1

opacity: 1;
width: 25%;
height: auto;
position:sticky;

Choose a reason for hiding this comment

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

I don't think there is a sticky value for position. The only proper values are static, relative, absolute, or fixed.

position: absolute;
top:550px;
left: 990px;
motion: circle();

Choose a reason for hiding this comment

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

I don't think there's a motion property.

background-image: url(/images/Howls3.png);
background-size: cover;
text-align: center;
color: rebeccapurple;

Choose a reason for hiding this comment

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

This isn't a standard color

<title>Document</title>
</head>
<body>
<header>
<hi class="about-header">Hola!</hi>

Choose a reason for hiding this comment

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

Should be h1

Suggested change
<hi class="about-header">Hola!</hi>
<h1 class="about-header">Hola!</h1>

<hi class="about-header">Hola!</hi>
</header>
<main>
<img class="about-img" src="/images/Screenshot (21).png" alt="Diana">

Choose a reason for hiding this comment

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

Better to use relative paths. Also img is a self-closing element. Also in general for web servers it's a bad idea to use spaces in file names.

Suggested change
<img class="about-img" src="/images/Screenshot (21).png" alt="Diana">
<img class="about-img" src="../images/Screenshot (21).png" alt="Diana" />

Comment on lines +16 to +19
<ul>
<p class="Dianas-paragraph">My name is Diana, I am a current student at ADA, on my way to become a full stack programmer</p>
<p class="Dianas-paragraph">I love to create things, I love my dogs, I love to travel </p>
<p class="Dianas-paragraph">Tools/languages I can use:

Choose a reason for hiding this comment

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

Only li should be a child of ul

Suggested change
<ul>
<p class="Dianas-paragraph">My name is Diana, I am a current student at ADA, on my way to become a full stack programmer</p>
<p class="Dianas-paragraph">I love to create things, I love my dogs, I love to travel </p>
<p class="Dianas-paragraph">Tools/languages I can use:
<p class="Dianas-paragraph">My name is Diana, I am a current student at ADA, on my way to become a full stack programmer</p>
<p class="Dianas-paragraph">I love to create things, I love my dogs, I love to travel </p>
<p class="Dianas-paragraph">Tools/languages I can use:
<ul>

Comment on lines +26 to +30
<p class="Dianas-paragraph">Feel free to explore my previous projects:</p>
<a class ="Dianas-paragraph" href="portfolio.html">My creations</a>

</p>
</ul>

Choose a reason for hiding this comment

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

These should be after the list

Suggested change
<p class="Dianas-paragraph">Feel free to explore my previous projects:</p>
<a class ="Dianas-paragraph" href="portfolio.html">My creations</a>
</p>
</ul>
</ul>
<p class="Dianas-paragraph">Feel free to explore my previous projects:</p>
<a class ="Dianas-paragraph" href="portfolio.html">My creations</a>
</p>

<header>
<h1> Welcome to Diana's Portfolio </h1>
</header>
<a href="/pages/portfolio.html"><img class= "Dianaport" src="/images/Supermassiveblackhole.png"></a>

Choose a reason for hiding this comment

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

For accessibility your img elements should have an alt attribute.

Suggested change
<a href="/pages/portfolio.html"><img class= "Dianaport" src="/images/Supermassiveblackhole.png"></a>
<a href="/pages/portfolio.html"><img class= "Dianaport" src="/images/Supermassiveblackhole.png" alt="supermassive black hole" /></a>

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.

2 participants