How to make blogs html

How TO — Blog Layout

Learn how to create a responsive blog layout with CSS.

Learn how to create a responsive blog layout that varies between two and full-width columns depending on screen width.

Resize the browser window to see the responsive effect:

How To Create a Blog Layout

Step 1) Add HTML:

Example

Blog Name

TITLE HEADING

Title description, Dec 7, 2017

Image

Some text..

TITLE HEADING

Title description, Sep 2, 2017

Image

Some text..

About Me

Image

Some text about me in culpa qui officia deserunt mollit anim..

Popular Post

Follow Me

Some text..

Step 2) Add CSS:

Example

body font-family: Arial;
padding: 20px;
background: #f1f1f1;
>

/* Header/Blog Title */
.header padding: 30px;
font-size: 40px;
text-align: center;
background: white;
>

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn <
float: left;
width: 75%;
>

/* Right column */
.rightcolumn float: left;
width: 25%;
padding-left: 20px;
>

/* Fake image */
.fakeimg background-color: #aaa;
width: 100%;
padding: 20px;
>

/* Add a card effect for articles */
.card background-color: white;
padding: 20px;
margin-top: 20px;
>

/* Clear floats after the columns */
.row:after content: «»;
display: table;
clear: both;
>

/* Footer */
.footer padding: 20px;
text-align: center;
background: #ddd;
margin-top: 20px;
>

/* Responsive layout — when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) .leftcolumn, .rightcolumn <
width: 100%;
padding: 0;
>
>

Tip: Go to our CSS Website Layout Tutorial to learn more about website layouts.

Tip: Go to our CSS Responsive Web Design Tutorial to learn more about responsive web design and grids.

Источник

How to Make A blog Template Design Using HTML CSS

hello viewers, in this article I will tell you how to create custom blog template design help of html CSS. this template is very simple and very attractive. you have seen lots of blog template on internet but this different by all. because we are not use a download template design. we create design by your manual coding. you can easily modify this template design to your need according. this blog theme is based on two main colours first one is blue colour and second one is black colour you can see that on this project. colour combination is main part of your template because if your colour choice is not good so that your template design is also not looks good. when you create a web template design two main things you have one is web template fonts and second one is web template colour combination. if you have chased correct colour and fonts. then your web template design looking are very attractive and unique.

now you can copy the source code in below and then paste your html document

Blog
  • Latest
  • Contact
  • actually want to read

    Latest stories


    Get our weekly email

    Copy the css code in below and paste your css document

    :root < --main: #7b4ee4 ; --darkblue: #362078; --black: #060606; --white: #e7dff4; >* < margin: 0px; padding: 0px; font-family: system-ui; >.clearfix < clear: both; >header < padding: 20px 0px; box-shadow: 2px 2px 15px var(--black); >.container < width: 1140px; max-width: 100%; margin: 0 auto; >.col-div-6 < width: 50%; float: left; >.logo < font-weight: bold; font-size: 25px; color: var(--black); >.logo span < color: var(--main); >.nav < float: right; >.nav li < list-style: none; float: left; padding: 3px 20px; >.nav li a < text-decoration: none; color: var(--black); >.nav li button < padding: 7px 15px; background: var(--main); color: white; border: none; border-radius: 5px; cursor: pointer; margin-top: -5px; >.banner-section < background: var(--main); height: 400px; overflow: hidden; >.heading < color: var(--white); font-size: 40px; letter-spacing: 1px; margin-top: 14%; >.p1 < color: white; width: 395px; margin-top: 20px; margin-bottom: 20px; letter-spacing: 1px; font-size: 14px; >.input-box < box-shadow: 1px 7px 8px 0px #222121; width: 360px; border-radius: 50%; >.input-box input[type="text"] < padding: 9px; width: 265px; border: none; border-radius: 5px; outline: none; >.input-box button < padding: 10px 27px; border-radius: 0px 5px 5px 0px; border: none; margin-left: -6px; background: var(--darkblue); color: white; cursor: pointer; >.ban-img < width: 250px; margin-bottom:-50px; >.b-img < width: 100%; border-radius: 10px; >.heading1 < margin-top: 20px; color: var(--main); font-size: 14px; text-transform: uppercase; >.blog-heading < font-size: 29px; font-weight: bold; margin-bottom: 20px; color: var(--black); >.text < font-size: 13px; letter-spacing: 1px; color: var(--black); margin-bottom: 20px; >.name < text-transform: uppercase; font-weight: 600; color: #a1a1a1; font-size: 14px; >.lr-box < padding: 10px 20px; >.b-img-1 < width: 100%; height: 160px; border-radius: 10px; margin-top: 7px; >.blog-heading-1 < font-size: 20px; font-weight: bold; margin-bottom: 20px; color: var(--black); >.line < width: 100%; margin-top: 15px; border: none; height: 1px; background: #ddd; >.lr-box:hover < opacity: 0.5; cursor: pointer; >.box-1:hover < opacity: 0.5; cursor: pointer; >.box-2 < width: 28.5%; float: left; margin: 25px; >.box-2:hover < opacity: 0.5; cursor: pointer; >.foot-section < background: var(--main); >.foot-inner < width: 500px; margin: 0 auto; padding: 50px; text-align: center; >.ibox2 < margin: 0 auto; width: 380px; >footer < background:var(--darkblue); padding: 15px; >footer p

    if you have any problem to understand this code then you please watch this video tutorial also

    Источник

    Читайте также:  Java mapping properties file
    Оцените статью