I am trying to make this but am confused and lost on how to do it

So this is what i am trying to create and i did do the header / navigation but the other thing is where it stops. “The Jumbo banner” I have a background that is a honey combe thing then a name occupation a download cv and contact me and there should be a PNG img to the right of me (that is not me use any photo) so far i have tryed

<section class="about">
    <div class="grid-item item1">
         <h1>Jhon Doe Boe</h1>
    </div>
    <div class="grid-item item2">
       <h2> Graphic designer</h2>
    </div>
    <div class="grid-item item3">
       <p>Download CV</p>
    </div>
    <div class="grid-item item4">
       <p>Contect me</p>
    </div>
    <div class="grid-item item5">
       <img class="G" src="imgF/guy-png-pictures-trzcacakrs-guy-png-648_1238.png">
    </div>  
</section>

css :

.about {
  display: grid;
  grid-gap: 10px;
  background-color: #2196F3;
  padding: 10px;
  height: 500px;
  width: 100%;
}

.item1 {
   height: 100%;
   width: 100%;
   background: black;
   grid-column:span 2;
   grid-row: 1;
}

 .item2 {
    height: 100%;
    width: 100%;
    background: black; 
    grid-column:span 2;
    grid-row: 2 ;
 }

  .item3 {
     height: 100%;
     width: 100%;
     background: black; 
    grid-column: 1;
    grid-row:3;
}

.item4 {
     height: 100%;
     width: 100%;
     background: black;
     grid-column: 2;
     grid-row:3;
}
 .item5 {
    height: 100%;
    width: 100%;
    background: red;
   grid-column: 3;
   grid-row: 1 / span 3;
 }

 .G {
     height: 100%;
    width: 100%;
 }

you can use a grid with 2 columns and 1 row. you put all the text in the left column and the image in the right column. also add color to your text because it doesn’t show.

ok i will try that cuz i am so like confused on why it dose not work like the img I made, I used colors to represent the boxes in the css basicly ill try this method now :slight_smile: thank you for trying to help out

1 Like

I am trying to make the jumbo using just css / html no java how can i make it so there is a huny combe background in the back left is text the download and cv are hoverable and basicly have a underline that looks like the picture and on the right is a png of a person. Ill remove him on phone so it will be easyer there but the desktop view should look like the pic pleas help ! :slight_smile:

Firstly, welcome to the forums.

While we are primarily here to help people with their Free Code Camp progress, we are open to people on other paths, too. Some of what you are asking is pretty trivial in the Free Code Camp context, so you might find that if you’re not getting the instruction and material you need in your current studies, the FCC curriculum will really help you get started. At a modest guess I’d say investing a 4-5 hours working through the curriculum here will really pay off. You can find the curriculum at https://www.freecodecamp.org/learn.

With your current questions, we don’t have enough context to know what you already know or don’t know, so it is impossible to guide you without just telling you the answer (which we won’t do).

It is pretty typical on here for people to share a codepen / repl.it / jsfiddle example of what they have tried so that anyone helping has more of an idea of what help is actually helpful.

Please provide some example of what you’ve tried and I’m sure you’ll get more help.

Happy coding :slight_smile: