83 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			2.8 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="./images/favicon-32x32.png">
 | 
						|
  <link rel="stylesheet" href="css/style.css">
 | 
						|
  
 | 
						|
  <title>Frontend Mentor | Four card feature section</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>
 | 
						|
  <header></header>
 | 
						|
  <main>
 | 
						|
    <div class="flexContainer">
 | 
						|
      <div class="topSection">
 | 
						|
          <h1 class="title1">Reliable, efficient delivery</h1>
 | 
						|
          <h1 class="title2">Powered by Technology</h1>
 | 
						|
          <p class="blurb">Our Artificial Intelligence powered tools use millions of project data points 
 | 
						|
            to ensure that your project is successful</p>
 | 
						|
      </div>
 | 
						|
  
 | 
						|
      <div class="middleSection">
 | 
						|
        <div class="column1">
 | 
						|
          <div class="supervisor card">
 | 
						|
            <h1 class="card-title">
 | 
						|
              Supervisor
 | 
						|
            </h1>
 | 
						|
            <p class="card-blurb">
 | 
						|
              Monitors activity to identify project roadblocks
 | 
						|
            </p>
 | 
						|
            <img class="card-image" src="images/icon-supervisor.svg" alt="Supervisor icon">
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
        
 | 
						|
        <div class="column2">
 | 
						|
          <div class="teamBuilder card">
 | 
						|
            <h1 class="card-title">
 | 
						|
              Team Builder
 | 
						|
            </h1>
 | 
						|
            <p class="card-blurb">
 | 
						|
              Scans our talent network to create the optimal team for your project
 | 
						|
            </p>
 | 
						|
            <img class="card-image" src="images/icon-team-builder.svg" alt="Team building icon">
 | 
						|
          </div>
 | 
						|
          <div class="karma card">
 | 
						|
            <h1 class="card-title">
 | 
						|
              Karma
 | 
						|
            </h1>
 | 
						|
            <p class="card-blurb">
 | 
						|
              Regularly evaluates our talent to ensure quality
 | 
						|
            </p>
 | 
						|
            <img class="card-image" src="images/icon-karma.svg" alt="Karma icon">
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
        <div class="column3">
 | 
						|
          <div class="calculator card">
 | 
						|
            <h1 class="card-title">
 | 
						|
              Calculator
 | 
						|
            </h1>
 | 
						|
            <p class="card-blurb">
 | 
						|
              Uses data from past projects to provide better delivery estimates
 | 
						|
            </p>  
 | 
						|
            <img class="card-image" src="images/icon-calculator.svg" alt="Calculator icon">       
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </div>  
 | 
						|
  </main>
 | 
						|
  <footer>
 | 
						|
    <!-- <p class="attribution">
 | 
						|
      Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. 
 | 
						|
      Coded by <a href="emailto:work@tarasis.net">Robert McGovern</a>.
 | 
						|
    </p> -->
 | 
						|
  </footer>
 | 
						|
</body>
 | 
						|
</html> |