Personal Portfolio Webpage - Build a Personal Portfolio Webpage

Tell us what’s happening:
My profile is just an avatar with my link extension. No projects or anything else I’ve done. Not sure how to solve that but seeing as I’ve completed every other Web Responsive Design project, it would make sense that they exist somewhere.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="styles.css" />
    <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap" rel="stylesheet">
      <title>Personal Portfolio</title>
    </head>
      <body>
        <nav id="navbar" class="nav">
          <ul>
            <li>About</li>
            <li>Projects</li>
            <li>Profile
          </nav>
        <section id="welcome-section">
          <h1>Hello World!</hi>
          <p>I'm Andrew, a new coder</p>
        </section>
        <section id="projects" class="project-tile"></section>
        <section class="profile-section"><a id="profile-link" href="https://www.freecodecamp.org/fcc37b214fe-a88f-4705-af83-5859565c839c" target="_blank">Profile</a></section>
/* file: styles.css */
html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}
.nav {
  display: flex;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--main-red);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
  z-index: 10;
}
ul {
  list-style: none
}
.welcome-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #000;
  background-image: linear-gradient(62deg, #3a3d40 0%, #181719 100%);
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0

Challenge: Personal Portfolio Webpage - Build a Personal Portfolio Webpage

Link to the challenge:

I figured out the issue.

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