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 onea
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: