CODING PRACTICE 13 My Projects Page
My Projects Page
In this assignment, let's build a My Projects Page by applying the concepts we learned till now. You can use the Bootstrap concepts and CCBP UI Kit as well.
Refer to the below gif image.
Note:
- You can add more projects that you have completed.
- Try to achieve the design as close as possible.
Resources
Use the image URLs given below.
- https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/software-developer-img.png
- https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/advanced-technologies-img.png
- https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/diwali-img.png
- https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/food-img.png
- https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/news-paper-img.png
CSS Colors used:
Text color Hex Code values:
CSS Font families used:
- Bree Serif
Concepts Review
Want to quickly review some of the concepts you’ve been learning?
Take a look at the Cheat Sheets.
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous"> <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script> </head> <body> <div id="sectionhomepage"> <img class="fist-img" src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/software-developer-img.png" alt="" /> <div class="fist-page-text"> <h1 class="fist-heding">MY Projects</h1> <p class="pragragraph">fngidfhgifhgfihgihg<br />fuhguidshgiuhhdhfidh</p> </div> <div class="d-flex flex-row justify-content-center"> <img class="fist-page-img" src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/advanced-technologies-img.png" onclick=" display('section01')" /> <img class="fist-page-img" src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/diwali-img.png" onclick="" /> </div> <div class="d-flex flex-row justify-content-center"> <img class="fist-page-img" src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/food-img.png" onclick="" /> <img class="fist-page-img" src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/news-paper-img.png" onclick="" /> </div> </div> <div id="section01"> <div class="second-page-bg d-flex flex-column justify-content-end"> <div class="second-page-card-bg "> <h1 class="heading">Advance Techknowging</h1> <p class="pragragraph02">ughrohfr<br />iogurigyt<br />igytiouioy>utiyhhr<br />ughri</p> <button class="buttion"> Learn More</button> <button class="buttion02" onclick="display('sectionhomepage')"> Back</button> </div> </div> </div> <div class="second-page-bg-img"> <h1 class="second-page-heading">happy diwali</h1> </div> <div class="second-page-bg"> <div class=""> </div> </div> <script type="text/javascript" src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/js/ccbp-ui-kit.js"></script> </body> </html>
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');
.fist-img {
height: 40vh;
}
.fist-page-text {
text-align: center;
}
.fist-heding {
color: #183b56;
font-family: "bree Serif";
}
.pragragraph {
color: #183b56;
font-family: "bree Serif";
}
.fist-page-img {
width: 170px;
height: 95px;
margin: 10px;
}
.second-page-bg {
height: 100vh;
background-image: url("https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/advanced-technologies-img.png");
background-size: cover;
}
.second-page-card-bg {
background-color: white;
border-top-right-radius: 16px;
border-top-left-radius: 16px;
text-align: center;
font-family: "bree serif";
margin: 20px;
}
.heading {
font-family: "bree serif";
color: blue;
}
.pragragraph02 {
font-family: "Bree Serif"
color: #616e7c;
}
.buttion {
background-color: white;
border-radius: 5px;
}
.buttion02 {
color: white;
background-color: blue;
border-radius: 5px;
}
.second-page-bg-img {
background-image: url("https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/diwali-img.png");
height: 40vh;
background-size: cover;
}
.second-page-heading {
color: white;
font-family: "Roboto";
font-size: 35px;
width: 220px;
padding: 25px;
}
.second-page-bg {
background-color: #0afaea;
background-size: cover;
}
.second-page-01card {}
Comments
Post a Comment