58 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
  <meta charset="UTF-8">
 | 
						|
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
  <!-- displays site properly based on user's device -->
 | 
						|
 | 
						|
  <link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
 | 
						|
  <link rel="stylesheet" href="./assets/css/index.css">
 | 
						|
 | 
						|
  <title>Frontend Mentor | Social links profile</title>
 | 
						|
 | 
						|
  <!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
 | 
						|
  <style>
 | 
						|
    .attribution {
 | 
						|
      font-size: 11px;
 | 
						|
      text-align: center;
 | 
						|
    }
 | 
						|
 | 
						|
    .attribution a {
 | 
						|
      color: hsl(228, 45%, 44%);
 | 
						|
    }
 | 
						|
  </style>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
  <main>
 | 
						|
    <section class="social-profile">
 | 
						|
      <div>
 | 
						|
        <figure>
 | 
						|
          <img class="social-profile__avatar" src="./assets/images/avatar-jessica.jpeg"
 | 
						|
            alt="Profile Picture of Jessica Randall">
 | 
						|
        </figure>
 | 
						|
        <!-- If this is for a page make then use h1 ... but if its for a component
 | 
						|
        then I think it should be h2 to h3 -->
 | 
						|
        <h1 class="social-profile__name">Jessica Randall</h1>
 | 
						|
        <p class="social-profile__location">London, United Kingdom</p>
 | 
						|
        <p class="social-profile__info">"Front-end developer and avid reader."</p>
 | 
						|
      </div>
 | 
						|
      <div class="social-profile_links">
 | 
						|
        <a class="social-profile__link" href="#" target="_blank" rel="noopener noreferrer">GitHub</a>
 | 
						|
        <a class="social-profile__link" href="#" target="_blank" rel="noopener noreferrer">Frontend Mentor</a>
 | 
						|
        <a class="social-profile__link" href="#" target="_blank" rel="noopener noreferrer">LinkedIn</a>
 | 
						|
        <a class="social-profile__link" href="#" target="_blank" rel="noopener noreferrer">Twitter</a>
 | 
						|
        <a class="social-profile__link" href="#" target="_blank" rel="noopener noreferrer">Instagram</a>
 | 
						|
      </div>
 | 
						|
    </section>
 | 
						|
  </main>
 | 
						|
 | 
						|
  <!-- <div class="attribution">
 | 
						|
    Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
 | 
						|
      rel="noopener noreferrer">Frontend Mentor</a>.
 | 
						|
    Coded by <a href="https://tarasis.net">Robert McGovern</a>.
 | 
						|
  </div> -->
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |