DEV Community

Dinesh G
Dinesh G

Posted on

Day 9 of my JAVA FULL STACK Learning Journey:HTML&CSS

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;
        }
Enter fullscreen mode Exit fullscreen mode
 body{

            display: flex;
            justify-content: center;
        }
        .left{
            border: 1px solid;
            height: 200px;
        }
        .right{
            border: 1px solid;
            height: 200px;
        }
Enter fullscreen mode Exit fullscreen mode

Happy coding

Top comments (0)