59 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <title>Document</title>
 | 
						|
    <link rel="stylesheet" href="style.css">
 | 
						|
    <script src="script.js" defer></script>
 | 
						|
    <script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js" defer></script>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
    <header>
 | 
						|
        <nav id="navbar">
 | 
						|
            <ul>
 | 
						|
                <li>
 | 
						|
                    <a href="#frontendmentor">Single Page Project - Frontend Mentor</a>
 | 
						|
                </li>
 | 
						|
                <li>
 | 
						|
                    <a href="#freecodecamp">Tech Documentation - Freecodecamp</a>
 | 
						|
                </li>
 | 
						|
                <li>
 | 
						|
                    <a id="profile-link" href="https://github.com/tarasis" target="_blank">GitHub</a>
 | 
						|
                </li>
 | 
						|
            </ul>
 | 
						|
        </nav>
 | 
						|
    </header>
 | 
						|
    <main>
 | 
						|
        <section id="welcome-section">
 | 
						|
            <h1>BLAH</h1>
 | 
						|
        </section>
 | 
						|
        <section id="projects">
 | 
						|
            <div class="project-tile" id="frontendmentor">
 | 
						|
                <a href="/FrontendMentor/newbie/order-summary-component">
 | 
						|
                    <img src="/screenshots/fem-newbie-order-summary-component.png"
 | 
						|
                        alt="Image of the Order Summary Component Frontend Mentor Challenge">
 | 
						|
                </a>
 | 
						|
            </div>
 | 
						|
            <div class="project-tile" id="freecodecamp">
 | 
						|
                Blah2
 | 
						|
            </div>
 | 
						|
        </section>
 | 
						|
    </main>
 | 
						|
    <footer class="#footer">
 | 
						|
        <ul>
 | 
						|
            <!-- linked in -->
 | 
						|
            <li class="linkedin"><a href="https://www.linkedin.com/in/robertmcgovern/">LinkedIn</a>
 | 
						|
            </li>
 | 
						|
            <!-- freecodecamp -->
 | 
						|
            <li class="github"><a href="https://github.com/tarasis">Github</a></li>
 | 
						|
            <!-- github -->
 | 
						|
            <li class="freecodecamp"><a href="https://www.freecodecamp.org/tarasis">freeCodeCamp</a></li>
 | 
						|
        </ul>
 | 
						|
    </footer>
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |