Hi Everyone!
Today is my ninth day class in Java full stack Development course. I am going to share my Second project resume . What I learn Today.
New project
Resume.html
To build a resume
division <div>
class layout
style layout
100vh
view port height
<style>
.layout{
border: 1px solid;
height: 100vh;
width: 70%;
display: grid;
grid-template-columns: 1fr 2fr;
}
body{
display: flex;
justify-content: center;
}
.left{
border: 1px solid;
height: 200px;
}
.right{
border: 1px solid;
height: 200px;
}
Happy coding
Top comments (0)