2023 Web Development Bootcamp : Intermediate CSS part3 - Day 7

 Changes:

I made changes to the header of the website yesterday. Here is the new code:


#logo1{
    height: 250px;
    position: relative;
    left: 100px;
  }

.team{
    height: 250px;
    position: relative;
    left: 150px;
    top: 10px;
}

#logo2{
  height: 250px;
  position: relative;
  left: 200px;
}




And here is the new website:






Absolute Positioning

A lot of info on positioning but no real connection to the personal website.


Centering Elements with CSS

note: text-align: center; margin: 0 auto 0 auto;


Font Styling using CSS

Note: Two major font families: serif and sans-serif; Google fonts.

This is another large topic and I will come back to it as needed.  I changed the font of my website to Arial for now.

body {
    background-color: #c7f6fd;
    font-family: Arial, Helvetica, sans-serif;
  }

  h1 {
    color:red;
    width: 50%;
    margin: 0 auto 0 auto;
  }


And here is the new website:















Comments

Popular posts from this blog

Space Wars- Python 3

Maze Game in Python using Turtle