92 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
  <meta charset="UTF-8">
 | 
						|
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
 | 
						|
  <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=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
 | 
						|
 | 
						|
  <link rel="stylesheet" href="css/styles.css">
 | 
						|
  <link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
 | 
						|
  <script src="js/github-api.js" defer></script>
 | 
						|
  <script src="js/theme-manager.js" defer></script>
 | 
						|
 | 
						|
  <title>Frontend Mentor | GitHub user search app</title>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
 | 
						|
  <header>
 | 
						|
    <h1>devfinder</h1>
 | 
						|
 | 
						|
    <label id="switch" class="switch" aria-hidden="true">
 | 
						|
      <input type="checkbox" id="theme-toggle" aria-label="Light / Dark mode switcher">
 | 
						|
      <span class="slider round"></span>
 | 
						|
    </label>
 | 
						|
 | 
						|
    Light
 | 
						|
    Dark
 | 
						|
  </header>
 | 
						|
 | 
						|
  <main>
 | 
						|
 | 
						|
    <section>
 | 
						|
      <input placeholder="Search GitHub username..." type="text" name="search-username" id="search-field">
 | 
						|
      <button type="submit" id="search-button">Search</button>
 | 
						|
    </section>
 | 
						|
 | 
						|
    <article>
 | 
						|
      <section>
 | 
						|
        <!-- img -->
 | 
						|
      </section>
 | 
						|
      <section>
 | 
						|
        <header>
 | 
						|
          <div>
 | 
						|
            <h2>fullname</h2>
 | 
						|
            <h3>username</h3>
 | 
						|
          </div>
 | 
						|
          <p>Joined date</p>
 | 
						|
        </header>
 | 
						|
 | 
						|
        <p>bio</p>
 | 
						|
 | 
						|
        <section>
 | 
						|
          <h4>Repos</h4>
 | 
						|
          <h4>Followers</h4>
 | 
						|
          <h4>Following</h4>
 | 
						|
        </section>
 | 
						|
 | 
						|
        <section>
 | 
						|
          <div>
 | 
						|
            <img src="assets/icon-location.svg" alt="" aria-hidden="true">
 | 
						|
            <a href="#">empty</a>
 | 
						|
          </div>
 | 
						|
 | 
						|
          <div>
 | 
						|
            <img src="assets/icon-website.svg" alt="" aria-hidden="true">
 | 
						|
            <a href="#">empty</a>
 | 
						|
          </div>
 | 
						|
 | 
						|
          <div>
 | 
						|
            <img src="assets/icon-twitter.svg" alt="" aria-hidden="true">
 | 
						|
            <a href="#">empty</a>
 | 
						|
          </div>
 | 
						|
 | 
						|
          <div>
 | 
						|
            <img src="assets/icon-company.svg" alt="" aria-hidden="true">
 | 
						|
            <a href="#">empty</a>
 | 
						|
          </div>
 | 
						|
        </section>
 | 
						|
 | 
						|
      </section>
 | 
						|
 | 
						|
    </article>
 | 
						|
 | 
						|
  </main>
 | 
						|
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |