Personal Portfolio Webpage - Build a Personal Portfolio Webpage

Tell us what’s happening:
Describe your issue in detail here.
I am struggling to see why these two items are incorrect: I know my entire page is not decorated yet, I am nailing down the HTML structure first.

  • Failed:Your portfolio should contain at least one element with a class of project-tile.

  • Failed:Your #projects element should contain at least one a element.

Your code so far

<html lang="en">
<head>
    <link rel="stylesheet" href="styles.css"/>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <title>Portfolio Page</title>
    <section id="welcome-section">
    <h1 id="welcome-section">Aaron's Portfolio</h1>
    <p id="welcome-section">Welcome to my prjoects, from Web Pages, to Calculators in the Tech Sector, all self-taught. To my projects in Manufacturing Industry</p>
    </section>
</head>
<body>
  <navbar id="navbar">
    <a id="nav" href="#projects">Projects</a>
    <a id="nav" href="#about me">About Me</a>
    <a id="nav" href="#contact">Contact</a>
  </navbar>
  <h2 id="projects">Projects</h2>
  <img class="project-tile" src="">
  <img class="project-tile" src="">
  <img class="project-tile" src="">
  <a id="projects" href="https//www.githup.com/asje2005/calculator" target="_blank">Python Calculator</a>
  <a id="projects" href="https//www.githup.com/asje2005/CAD" target="_blank">3D Models</a>
  <br><br>
  <article class="project-tile">These images are what the final results are form my learning experience. I also intend to tweak and advance the projects as I learn more. So they will be a WIP. My CAD projects are final and usually the customer likes to keep their IP out of public eye. These are projects I personally developed and have no bearing to harm any companies agreements or property.</article>
  <p>Follow the links to test and view one of projects</p>
  <h2>About Me</h2>
  <article>This is my porfolio page of the tech work I have done as well as my manufacturing work, with tech, I have done. I have been working in the manufacturing industry for over 15 years, I started out as an operator pulling out the parts from a CNC machine and measuring them to the technical drawing. I quickly worked my way up to Setup and Programmer, where I was writing CNC code on the machines to create these products based on the prints. This code is called G and M code, and it has an industry standard that most OEM machines follow, and they also put their own features in as well. I started to learn coding about 2 years ago, looking to improve my skills with CAD/CAM programming. This was called post edits, and I needed tp understand both the manufacturing software and the languageit used in the background to make the software speak to the 3d models and the user. From there I wanted to learn more about coding and started with Python, creating early stage guided projects by creating Calculators and a Weather App. These are very simple and still need tweaking, from there I wanted to learn Web Page building since I needed to build a portfolio page to showcase my work, I became engaged with HTML, CSS and JS for a more full front-end style of coding.</article>
</body>

<footer>Contact</footer>
<a id="profile-link" href="https//www.githup.com/asje2005" target="_blank"><span >GitHub</a></span>
<a id="profile-link" href="https//www.instagram.com/asje2005" target="_blank"><span>Instagram</a></span>
</html>  ```

```html
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <link rel="stylesheet" href="styles.css"/>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <title>Portfolio Page</title>
    <section id="welcome-section">
    <h1 id="welcome-section">Aaron's Portfolio</h1>
    <p id="welcome-section">Welcome to my prjoects, from Web Pages, to Calculators in the Tech Sector, all self-taught. To my projects in Manufacturing Industry</p>
    </section>
</head>
<body>
  <navbar id="navbar">
    <a id="nav" href="#projects">Projects</a>
    <a id="nav" href="#about me">About Me</a>
    <a id="nav" href="#contact">Contact</a>
  </navbar>
  <h2 id="projects">Projects</h2>
  <img class="project-tile" src="">
  <img class="project-tile" src="">
  <img class="project-tile" src="">
  <a id="projects" href="https//www.githup.com/asje2005/calculator" target="_blank">Python Calculator</a>
  <a id="projects" href="https//www.githup.com/asje2005/CAD" target="_blank">3D Models</a>
  <br><br>
  <article class="project-tile">These images are what the final results are form my learning experience. I also intend to tweak and advance the projects as I learn more. So they will be a WIP. My CAD projects are final and usually the customer likes to keep their IP out of public eye. These are projects I personally developed and have no bearing to harm any companies agreements or property.</article>
  <p>Follow the links to test and view one of projects</p>
  <h2>About Me</h2>
  <article>This is my porfolio page of the tech work I have done as well as my manufacturing work, with tech, I have done. I have been working in the manufacturing industry for over 15 years, I started out as an operator pulling out the parts from a CNC machine and measuring them to the technical drawing. I quickly worked my way up to Setup and Programmer, where I was writing CNC code on the machines to create these products based on the prints. This code is called G and M code, and it has an industry standard that most OEM machines follow, and they also put their own features in as well. I started to learn coding about 2 years ago, looking to improve my skills with CAD/CAM programming. This was called post edits, and I needed tp understand both the manufacturing software and the languageit used in the background to make the software speak to the 3d models and the user. From there I wanted to learn more about coding and started with Python, creating early stage guided projects by creating Calculators and a Weather App. These are very simple and still need tweaking, from there I wanted to learn Web Page building since I needed to build a portfolio page to showcase my work, I became engaged with HTML, CSS and JS for a more full front-end style of coding.</article>
</body>

<footer>Contact</footer>
<a id="profile-link" href="https//www.githup.com/asje2005" target="_blank"><span >GitHub</a></span>
<a id="profile-link" href="https//www.instagram.com/asje2005" target="_blank"><span>Instagram</a></span>
</html>
/* file: styles.css */
#navbar{
  position: fixed;
  top: 0;
  right: 20; 
  border: 2px dashed blue;
}
.project-tile{
  border: 1px solid black;
  border-radius: 20px;
  font: Arial;
  background: grey;
}


@media only screen and (max-width: 700px){

}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36

Challenge: Personal Portfolio Webpage - Build a Personal Portfolio Webpage

Link to the challenge:

You have duplicated ids. It is not allowed in html.

I’m sorry I don’t follow? How am I suppose to label items with the appropriate id

Use class="value" for multiple html elements selection in css. Use #id only for one element. The id’s value is unique and can not be used again:

<img class="project-tile" src=""> ...this is valid code
  <img class="project-tile" src="">
<img id="project-tile" src=""> ...this is not valid code
  <img id="project-tile" src="">

I fixed the <a> files to only have one id, but the same Failed errors are still present.

You didn’t fix all duplicated ids in your code.
When you have finished fixing post a code again.

Only one id no longer duplicated. Same results.

<html lang="en">
<head>
    <link rel="stylesheet" href="styles.css"/>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <title>Portfolio Page</title>
    <section id="welcome-section">
    <h1 >Aaron's Portfolio</h1>
    <p >Welcome to my prjoects, from Web Pages, to Calculators in the Tech Sector, all self-taught. To my projects in Manufacturing Industry</p>
    </section>
</head>
<body>
  <navbar id="navbar">
    <a href="#projects">Projects</a>
    <a href="#about me">About Me</a>
    <a href="#contact">Contact</a>
  </navbar>
  <h2 >Projects</h2>
  <img class="project-tile" src="https://www.google.com/url?sa=i&url=https%3A%2F%2Fpyshark.com%2Fbasic-gui-calculator-in-python%2F&psig=AOvVaw1F_xNXotHZ7FxEbQQ0bGv2&ust=1679597710612000&source=images&cd=vfe&ved=0CA8QjRxqFwoTCPDLxpyb8P0CFQAAAAAdAAAAABAD">
  <img class="project-tile" src="https://www.google.com/url?sa=i&url=https%3A%2F%2Fmasterprograming.com%2Fsimple-calculator-using-python-gui-create-calculator-using-tkinter%2F&psig=AOvVaw1F_xNXotHZ7FxEbQQ0bGv2&ust=1679597710612000&source=images&cd=vfe&ved=0CA8QjRxqFwoTCPDLxpyb8P0CFQAAAAAdAAAAABBX">
  <img class="project-tile" src="https://www.google.com/url?sa=i&url=https%3A%2F%2Fgrabcad.com%2Flibrary%2Fsimple-mechanical-part-2&psig=AOvVaw0HGuhsnhu0DilltHixTSoV&ust=1679599866417000&source=images&cd=vfe&ved=0CA8QjRxqFwoTCICbw6Gj8P0CFQAAAAAdAAAAABAE">
  <br><br>
  <a id="projects" href="https//www.github.com/asje2005/calculator" target="_blank">Python Calculator</a>
  <a href="https//www.github.com/asje2005/CAD" target="_blank">3D Models</a>
  <br><br>
  <article class="project-tile">These images are what the final results are form my learning experience. I also intend to tweak and advance the projects as I learn more. So they will be a WIP. My CAD projects are final and usually the customer likes to keep their IP out of public eye. These are projects I personally developed and have no bearing to harm any companies agreements or property.</article>
  <p>Follow the links to test and view one of projects</p>
  <h2>About Me</h2>
  <article>This is my porfolio page of the tech work I have done as well as my manufacturing work, with tech, I have done. I have been working in the manufacturing industry for over 15 years, I started out as an operator pulling out the parts from a CNC machine and measuring them to the technical drawing. I quickly worked my way up to Setup and Programmer, where I was writing CNC code on the machines to create these products based on the prints. This code is called G and M code, and it has an industry standard that most OEM machines follow, and they also put their own features in as well. I started to learn coding about 2 years ago, looking to improve my skills with CAD/CAM programming. This was called post edits, and I needed tp understand both the manufacturing software and the languageit used in the background to make the software speak to the 3d models and the user. From there I wanted to learn more about coding and started with Python, creating early stage guided projects by creating Calculators and a Weather App. These are very simple and still need tweaking, from there I wanted to learn Web Page building since I needed to build a portfolio page to showcase my work, I became engaged with HTML, CSS and JS for a more full front-end style of coding.</article>
</body>

<footer>Contact</footer>
<a id="profile-link" href="https//www.githup.com/asje2005" target="_blank"><span >GitHub</a></span>
<a href="https//www.instagram.com/asje2005" target="_blank"><span>Instagram</a></span>
</html>   ```

These are not images at all:

src="https://www.google.com/url?sa=i&url=https%3A%2F%2Fpyshark.com%2Fbasic-gui-calculator-in-python%2F&psig=AOvVaw1F_xNXotHZ7FxEbQQ0bGv2&ust=1679597710612000&source=images&cd=vfe&ved=0CA8QjRxqFwoTCPDLxpyb8P0CFQAAAAAdAAAAABAD">↩
  <img class="project-tile" src="https://www.google.com/url?sa=i&url=https%3A%2F%2Fmasterprograming.com%2Fsimple-calculator-using-python-gui-create-calculator-using-tkinter%2F&psig=AOvVaw1F_xNXotHZ7FxEbQQ0bGv2&ust=1679597710612000&source=images&cd=vfe&ved=0CA8QjRxqFwoTCPDLxpyb8P0CFQAAAAAdAAAAABBX">↩
  <img class="project-tile" src="https://www.google.com/url?sa=i&url=https%3A%2F%2Fgrabcad.com%2Flibrary%2Fsimple-mechanical-part-2&psig=AOvVaw0HGuhsnhu0DilltHixTSoV&ust=1679599866417000&source=images&cd=vfe&ved=0CA8QjRxqFwoTCICbw6Gj8P0CFQAAAAAdAAAAABAE"

an image should have .jpg, .png … extension.

  • <a id="profile-link" href="https//www.githup.com/asje2005" target="_blank"><span >GitHub</a></span>↩ <a href="https//www.instagram.com/asje2005" target="_blank"><span>Instagram</a></span>↩ …span tags should surround “Instagram”.

  • there is no declaration in your file

  • html elements that don’t belong to head element:

<section id="welcome-section">↩
    <h1 >Aaron's Portfolio</h1>↩
    <p >Welcome to my prjoects, from Web Pages, to Calculators in the Tech Sector, all self-taught. To my projects in Manufacturing Industry</p>↩
    </section>
  • ‘body’ element doesn’t have the closing tag
    .
    .
    .

Thank you. I was able to sort out the issues. I needed to declare my “projects” in a section or group. That caused those two items to fail.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.