Personal Portfolio Webpage - Build a Personal Portfolio Webpage

Hello, I have a question I’ve been wondering about. Is it possible to upload an image from my personal device? If so, how can I do that? I’ve only been using images from Google up to this point

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="styleshet" href="styles.css"></link>
    <title>My Personal Portofolio</title>
  </head>
  <body>
    <header>
      <nav id="navbar">
        <ul>
          <a class= "nav-link" href="welcome-section">Home</a>
          <a class= "nav-link" >Projects</a>
          <a class= "nav-link" id="profile-link">About Me</a>
        </ul>
      </nav>
    </header>

    <section id="welcome-section">
      <h1>Hi I'm Sal</h1>
      <h3>Welcome to my portofolio</h3>
    </section>
    <section id="projects">
      <img>
      <div class="project-tile"></div>
      <img>
      <div class="project-tile"></div>
      <img>
      <div class="project-tile"></div>
      <img>
      <div class="project-tile"></div>
    </section>
  </body>
</html>
/* file: styles.css */

Your browser information:

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

Challenge: Personal Portfolio Webpage - Build a Personal Portfolio Webpage

Link to the challenge:

Take a look at the following article. You may start from there and research for more info by browsing similar platforms on the Web:

2 Likes

It really helps a lot! Thank you so much :+1: :+1: :+1:

2 Likes

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