freecodecamp project 5, just amused to see if that works. I technically passed even if it isn't actually even remotely complete lol
This commit is contained in:
		
							parent
							
								
									20bd91b006
								
							
						
					
					
						commit
						f8e1625540
					
				| 
						 | 
					@ -0,0 +1,59 @@
 | 
				
			||||||
 | 
					<!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>
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,21 @@
 | 
				
			||||||
 | 
					*,
 | 
				
			||||||
 | 
					::before,
 | 
				
			||||||
 | 
					::after {
 | 
				
			||||||
 | 
					    margin: 0;
 | 
				
			||||||
 | 
					    padding: 0;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					body {
 | 
				
			||||||
 | 
					    min-height: 100vh;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#navbar {
 | 
				
			||||||
 | 
					    position: fixed;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#welcome-section {
 | 
				
			||||||
 | 
					    height: 100vh;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@media screen and (min-width: 500px) {
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -180,6 +180,17 @@
 | 
				
			||||||
                            ],
 | 
					                            ],
 | 
				
			||||||
                            "screenshotURL": "/screenshots/fcc-web-Project4-BuildATechnicalDocument.png",
 | 
					                            "screenshotURL": "/screenshots/fcc-web-Project4-BuildATechnicalDocument.png",
 | 
				
			||||||
                            "screenshotAltText": "Project 4 - Build A Technical Document"
 | 
					                            "screenshotAltText": "Project 4 - Build A Technical Document"
 | 
				
			||||||
 | 
					                        },
 | 
				
			||||||
 | 
					                        {
 | 
				
			||||||
 | 
					                            "title": "Project 5 - Personal Portfolio Page",
 | 
				
			||||||
 | 
					                            "url": "/freeCodeCamp/responsive-web-design-projects/Project5-PersonalPortfolioPage",
 | 
				
			||||||
 | 
					                            "description": "",
 | 
				
			||||||
 | 
					                            "techUsed": [
 | 
				
			||||||
 | 
					                                "html5",
 | 
				
			||||||
 | 
					                                "css3"
 | 
				
			||||||
 | 
					                            ],
 | 
				
			||||||
 | 
					                            "screenshotURL": "/screenshots/fcc-web-Project5-PersonalPortfolioPage.png",
 | 
				
			||||||
 | 
					                            "screenshotAltText": "Project 5 - Personal Portfolio Page"
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
                    ]
 | 
					                    ]
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 223 KiB  | 
		Loading…
	
		Reference in New Issue