DEV Community

Dinesh G
Dinesh G

Posted on

Day 3 of My Java Full Stack Learning :HTML&CSS

Hi Everyone
Today is my third day class and continuation the portfolio project to built a own website in Java Stack Development. I am share this Project. what I learn Today.

Display Flex
Display Flex is a CSS property value used in web development to create flexible and responsive layout structures without using floats or positioning.

container {
  display: flex;
}
Enter fullscreen mode Exit fullscreen mode

container

container{
       display flex;
       align items:end;
       Justify content:end;
}
Enter fullscreen mode Exit fullscreen mode

Type of HTML tags
<ul> unordered list
<p> Paragraph
<li> list
<div> section
<ol> ordered list
<h1> heading

Margin:auto; Auto border Alignment

Margin : Out side box
padding : In side box

border radius: curve the border

ul{
 border 1px;
 list-style-type.name;
 border:1px solid ;
 display: flex;
 gap 15px;
 flex decoration
} 
Enter fullscreen mode Exit fullscreen mode

color : To declare the front color

Footer
Footer of the HTML code

Footer {
     text align:center;
     border :1px solid;
     background :color;
     color :white;
     margin :white;
}

Enter fullscreen mode Exit fullscreen mode

This is I Learned about Today.

Top comments (0)