<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<!--
Hello Camper!
For now, the test suite only works in Chrome! Please read the README below in the JS Editor before beginning. Feel free to delete this message once you have read it. Good luck and Happy Coding!
- The freeCodeCamp Team
-->
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Grandstander&display=swap" rel="stylesheet">
</head>
<body>
<nav id="navbar">
<a href="#welcome-section">About</a>
<a href="#projects">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
<section id="welcome-section">
<h1>Padma Lili</h1>
<p>Beggining Developer</p><span class="clue">(but growing)</span>
</section>
<section id="projects" class="projects">
<h2 class="project-header">These are some of my projects</h2>
<div class="project-grid">
<a href="https://codepen.io/padmalili/pen/bGepJZm" target="_blank">Survey Form
<br> <img src="https://pbs.twimg.com/card_img/1318725528736681984/38gCdTzX?format=jpg&name=small" class="project-tile" alt="project"> </a>
<a href="https://codepen.io/padmalili/pen/oNLLRpG" target="_blank"><br> Product Landing Page
<br><img src="https://pbs.twimg.com/card_img/1318725436575223809/CHteSV_K?format=jpg&name=small" class="project-tile" alt="project">
</a>
<a href="https://codepen.io/padmalili/pen/mdEOYbr" target="_blank"><br>Technical Docuentation Page
<br> <img src="https://pbs.twimg.com/card_img/1320080694756900868/aChZ5Fkd?format=jpg&name=small" alt="project" class="project-tile"> </a>
</div>
</section>
<section id="contact">
<nav id="project-bar">
<a href="https://github.com/padmalili" target="_blank" id="profile-link">
<i class="fab fa-github">
</i>GitHub</a>
<a href="https://codepen.io/padmalili?__cf_chl_jschl_tk__=e3e46f0ff95bed26b422c82d7d60c0f220d93e32-1603905902-0-AQtGOKNpUhOyQkNWyrkKY3T_iempzu3ol5f4tg8LS7nJ08D6Z9rWz-V-FJMkuTk16Jb4y2fqCgmOsOt0wb5NJdxp0juTQtdTBX1BX500kUJc59p5fRgH_CuD6jxySiUSOinJvFzR7pkIYwscHBn9kPGmkdzxp22joT1oE1f5un2wBgLGEqhLCFngkOFAwEAERFsqxusnpes_mBvlDqgokQxYngz25mVMUXks-wHG-cNHCEZi3U_Bqu51_fJTRBLq3Xy60zOsLMhmE8zUL4sfkPLW7u9zzINtzLHuNRORN-yHl0NgLGxrajRjCVvtysP_XXYkQiQOE-AmheQbCp5YbJfYdT9A7YW4op1ja-EHLWmv" target="_blank" id="profile-link"> <i class="fab fa-free-code-camp"> </i>FreeCodeCamp
</a>
<a href="https://www.instagram.com/padma_lili/" target="_blank" id="profile-link"> <i class="fab fa-instagram"> </i> Instagram
</a>
</nav>
</section>
</body>
</html>
body {
font-family: 'Grandstander', cursive;
background: linear-gradient( 110.6deg, rgba(179,157,219,1) 7%, rgba(150,159,222,1) 47.7%, rgba(24,255,255,1) 100.6% );
display: grid;
grid-template-rows: "20px 300px auto 20px";
grid-gap: 100px;
}
nav#navbar {
padding: 30px;
background-color:#CCBDD5 ;
position:fixed ;
width:95%;
text-align: right;
}
nav#navbar a {
padding: 20px;
color: #0071e3;
font-size: 30px;
text-decoration: none;
}
section#welcome-section{
text-align: center;
font-size: 50px;
color: #8819C4 ;
width: 100%;
height: 100vh;
}
.clue {font-size: 30px;}
section#projects {
text-align:center;
font-size: 30px;
color: #0071e3;
width:100%;
height:100vh;
}
div.project-grid{
display: grid;
grid-gap: 30px;
}
section#contact{
background-color:#CCBDD5 ;
padding: 30px;
text-align: center;
width:100%
}
nav#project-bar a {
font-size: 20px;
padding: 25px;
}
@media screen and (max-width: 600px) {
body{
grid-template-rows: 20%;
}
nav#navbar {padding: 5px;
font-size: 10px;}
section#welcome-section{width: 20%
font-size: 15px;}
div.project-grid { width: 20%}
section#projects {width: 20%
font-size: 10px;}
section#contact {
padding: 3px;
font-size: 5px;}
img{width:100%}
}
// !! IMPORTANT README:
// You may add additional external JS and CSS as needed to complete the project, however the current external resource MUST remain in place for the tests to work. BABEL must also be left in place.
/***********
INSTRUCTIONS:
- Select the project you would
like to complete from the dropdown
menu.
- Click the "RUN TESTS" button to
run the tests against the blank
pen.
- Click the "TESTS" button to see
the individual test cases.
(should all be failing at first)
- Start coding! As you fulfill each
test case, you will see them go
from red to green.
- As you start to build out your
project, when tests are failing,
you should get helpful errors
along the way!
************/
// PLEASE NOTE: Adding global style rules using the * selector, or by adding rules to body {..} or html {..}, or to all elements within body or html, i.e. h1 {..}, has the potential to pollute the test suite's CSS. Try adding: * { color: red }, for a quick example!
// Once you have read the above messages, you can delete all comments.
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.