create account

Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website by gotgame

View this thread on: hive.blogpeakd.comecency.com
· @gotgame · (edited)
$40.82
Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website
## What Will I Learn

In this post we will be learning how create the following components using the MaterializeCSS framework

- Basic homepage layout
- Navigation Bar
- Slider
- Rows and Columns
- Cards
- Footer


## Requirements

- Code editor
- Latest version of any web browser

## Difficulty

Intermediate

## Tutorial Content

In this tutorial we will create a basic HTML/CSS page using the Materialize framework.

We'll be adding all the components above in order to make our page complete.

For more information on how to get started with Materialize, read [this resource](http://materializecss.com/getting-started.html).

You can download the full source code for this tutorial in zip format [from here](https://github.com/olatundeee/homepage-layout/archive/master.zip).


### Step 1. Navigation Bar

To create the navigation bar add the following code to the HTML file of the page

    <header>
      <div class="container" id="nav-container">
        <nav>
          <div class="nav-wrapper red accent-3">
            <a href="#" class="brand-logo white-text darken-3" id="logo-link">KONZULTZ</a>
              <ul id="nav-mobile" class="right hide-on-med-and-down">
                <li><a href="#" class="white-text">HOME</a></li>
                <li><a href="#" class="white-text">ABOUT US</a></li>
                <li><a href="#" class="white-text">SERVICES</a></li>
                <li><a href="#" class="white-text">BLOG</a></li>
                <li><a href="#" class="white-text">SHOP</a></li>
                <li><a href="#" class="white-text">CHECKOUT</a></li>
                <li><a href="#" class="white-text">CONTACT</a></li>
              </ul>
          </div>
        </nav>
      </div>
      </header>


Additionally, in the CSS file for the page add the following code

    #nav-container {
      margin-top: 30px;
    }
    
    #logo-link {
      padding-left: 10px;
    }

After saving the file, the page displayed in the browser will be displayed like the screenshot below

![](https://image.ibb.co/m0koA7/Capture.png)

#### Code Analysis

In this section we first of all created a `<header>` tag to hold the contents of our navigation bar.

Inside the tag we created another `<div>` tag with specified class and id of `container` and `nav-container` both of which are responsible clearing the area outside the navigation bar in order to create a better layout.

Then we opened a new `<nav>` and created a `<div>` directly under it. The `<div>` tag contains a class attribute with two values

- `nav-wrapper` for centering the navigation bar contents
- `red-accent-3` to set the background of the navigation bar to color red.

Next we created a link to display the brand logo and we assigned the tag with class attribute values of `brand-logo white-text darken-3` and id attribute value of `logo-link`. Both attribute values will set the styles of the logo area of the layout.

After the logo area we created a list containing the contents of our navigation bar, aligned it to the right side with the class attribute value `right`. 

Furthermore we set the list to be hidden on tablet and mobile screens with the class attribute value `hide-on-med-and-down`.

Inside this list we add all menu contents and give them a class attribute value of `white-text` to set the text colors to white.





### Step 2: Slider

We'll be creating our slider in three stages. 

The first stage, head over to the `HTML` file for the page and append the following code

     <section id="home-slider">
            <div class="container">
            <div class="slider">
              <ul class="slides">
                <li>
                  <span><img src="images/image_one.jpg"></span> <!-- random image -->
                  <div class="caption center-align">
                    <h3>This is our big Tagline!</h3>
                    <h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5>
                  </div>
                </li>
                <li>
                  <img src="images/image_three.jpg"> <!-- random image -->
                  <div class="caption right-align">
                    <h3>Right Aligned Caption</h3>
                    <h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5>
                  </div>
                </li>
                <li>
                  <img src="images/image_five.jpg"> <!-- random image -->
                  <div class="caption center-align">
                    <h3>This is our big Tagline!</h3>
                    <h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5>
                  </div>
                </li>
              </ul>
            </div>
            </div>
          </section>


For the second part of the process we'll be adding the CSS styles for the slider.

In your CSS file append the following code

        #home-slider {
      margin-top: 30px;
    }

Lastly we'll be initializing an instance of the slider with jQuery, in the JavaScript file for your age append the following code

    $(document).ready(function(){
      $('.slider').slider();
    });
 Save all your files. Your homepage would look like this right now

![](https://image.ibb.co/iofQsx/Capture.png)

#### Code Analysis

First of all we add a `<section>` tag with a id  `home-slider` for easy identification in our CSS file.

Next we add a `<div>` tag with class `container` to clear out the area around our slider.

We then add a new `<div>` tag with a class `slider` to specify that the remainder of the content should be displayed in a slider.

Inside the `<div>` tag we create an unordered list with  class  `slides` containing a list of three images enclosed in the `<ul>` tag.

In the `<ul>` tag there are three `<li>` tags and in each tag there is an image plus a `<div>` tag with class  `caption`.

Inside the `<div class="caption">` there are two header elements, the first one holds the content for the main caption for the slider image while the second one holds the content for the tagline to the main caption.

### Step 3: Bio

Here we'll be creating a row with two columns. The essence of this section is for us to be able to add small bio about our company/business accompanied by an image on the right side.

To do that, in your `HTML` file add this code

    <section id="meet-us">
           <div class="container">
              <div class="row valign-wrapper red accent-3 white-text hoverable">
                <div class="col l12">
                  <h3>Welcome To <span>Wherever</span></h3>
                  <p>We provide the best consulting financial & professional business 
                    solution and strategy for increasing your business growth</p>
                </div>
              </div>
                <br>
                <div class="row valign-wrapper hoverable white red-text accent-3" id="inner-meet-us">
                <div class="col l7 m6 s12">
                  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
                </div>
                <div class="col l5 m6 s12">
                  <img src="images/image_four.jpg" height="140px" width="">
                </div>
              </div>
          </section>


In the CSS file add the following

    #meet-us {
      padding-top: 10px;
      border-radius: 5px;
      padding-left: -10px;
      text-align: center;
      margin-top: 50px;
    }
    
    #inner-meet-us {
      margin-top: 10px;
    }


Save the file and check for the result.

![](https://preview.ibb.co/eMsmzc/Capture.png)

#### Code Analysis

We started with a `<section>` tag with id  `meet-us` followed by a `<div>` tag with class `container` to clear the area around the section and make it more compact.

Next we create a row using the `<div>` tag and we assign the class `row` to it. 

This is followed yet by another `<div>` tag with the class  `col` to create the first column in our `row` class which will hold the header content for this section.

After that we created a new `<div>` tag with class  `row` to hold the body content for this section.

Inside the new row we create two columns using the `<div>` tag with a class `col`.

The first column will contain text in form of a short note about the business and the second column will contain a small image.

### Step 4: Main Services

Here we will be working on a section where we can briefly describe the main services and products offered by  the business. 

All other minor services should be left for the services page.

This section will be divided into three columns, each column will contain a card that will display brief information about each service.

The `HTML` code to add this column

     <section id="core-services">
            <div class="container">
              <div class="row valign-wrapper red accent-3 white-text hoverable">
                <div class="col l12">
                  <h3>We Can Help You</h3>
                  <p>We provide the best consulting financial & professional business 
                    solution and strategy for increasing your business growth</p>
                </div>
              </div>
              <br>
              <div class="row">
                <div class="col l4" id="inner-core-services">
                      <div class="card hoverable">
                        <div style="margin-left: -10px; padding-left: -20px;">
                         <i>
                          <img src="images/service-icon-1.png">
                         </i>
                        </div>
                        <div class="card-content white red-text accent-3">
                          <span class="card-title" style="margin-top: 7px;">Lorem ipsum</span>
                          <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
                        </div>
                      </div>
                </div>
                <div class="col l4" id="inner-core-services">
                      <div class="card hoverable">
                        <div style="margin-left: -10px; padding-left: -20px;">
                          <i>
                            <img src="images/service-icon-2.png">
                          </i>
                        </div>
                        <div class="card-content white red-text accent-3">
                          <span class="card-title">Lorem ipsum</span>
                          <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
                        </div>
                      </div>
                </div>
                <div class="col l4" id="inner-core-services">
                      <div class="card hoverable">
                        <div style="margin-left: -10px; padding-left: -20px; padding-top: 10px;">
                        <i>
                          <img src="images/service-icon-3.png">
                       </i>
                       </div>
                        <div class="card-content white red-text accent-3">
                          <span class="card-title" style="margin-top: 5px;">Lorem ipsum</span>
                          <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
                        </div>
                      </div>
                </div>
              </div>         
            </div>
          </section>
          
     <section>
        
                <div class="container">
                  <a class="waves-effect waves-light btn red accent-3 white-text hoverable" id="service-btn">LEARN MORE</a>
                </div>
        
              </section>
        
    


To add the CSS styles for this section paste this code in your CSS file

    #core-services {
      padding-top: 10px;
      border-radius: 5px;
      padding-left: -10px;
      text-align: center;
      margin-top: 50px;
    }
    
    #inner-core-services{
      margin-top: 30px;
      margin-bottom: 50px;
      padding-top: 5px;
     margin-left: 6.25px;
     margin-right: 6.25px;
     width: 300px;
    }
    #service-btn {
      margin-bottom: 100px;
      margin-left: 400px;
    }

Save the files.

Here are screenshots of the areas we just created

![](https://image.ibb.co/g7z3Cx/Capture.png)
![](https://image.ibb.co/eBw8Cx/Capture.png)
![](https://image.ibb.co/gU4dCx/Capture.png)

#### Code Analysis

The opening tag for this block is the `<section>` tag which signifies the beginning of a new section. It has an id `services`.

This followed by a `<div>` tag with class  `container` which is also followed by another `<div>` tag with a class `row` signifying the creation of a new row.

Inside the `<div class="row"></div>` tag we added the code for the header we used in the previous section with a little variation. You can change the contents of the tag to fit the ones you'd like to use as header for the services section.

After dealing with the section header we then create three new `<div>` tags with a class `col` . Inside each `<div class="col">` we create two extra `<div>` tags and one `<span>` tag which is a child element of the second `<div>` tag. 

Both `<div>` tags are assigned the  class value `card` and `card-content` respectively while the `<span>` tag is assigned a class  of `card-title`.

The `<div class="card-content">` will contain all the main body content for each card.

The `<span>` tag will contain the titles of each individual card.

#### Step 5: Associates

Here we are going to display different brands associated with the business and to do that just append the following code in your HTML file

 
          <section>
          <div class="container red-text accent-3 white">
            <div class="row hoverable">
              <div class="col l12 m12 s12 red accent-3 white-text">
                <div class="center" style="text-align: center;">
                  <h3>Trusted By Our Associates</h3>
                </div>
              </div>
              <br>
              <div class="col l12 m12 s12 red accent-3 white-text">
                <div class="valign-wrapper" style="text-align: center; padding-left: 50px;">
                  <p>We provide the best consulting financial & professional business 
                    solution and strategy for increasing your business growth</p>
                </div>
              </div>
            </div>
            <div class="row" style="padding: 10px; margin-top: 130px; margin-bottom: 130px;">
              <div class="col l2 m4 s6 hoverable">
                <div>
                  <img src="images/icon-1.png" id="ass-images">
                </div>
              </div>
              <div class="col l2 m4 s6 hoverable">
                <div>
                  <img src="images/icon-2.png" id="ass-images">
                </div>
              </div>
              <div class="col l2 m4 s6 hoverable">
                <div>
                  <img src="images/icon-3.png" id="ass-images">
                </div>
              </div>
              <div class="col l2 m4 s6 hoverable">
                <div>
                  <img src="images/icon-4.png" id="ass-images">
                </div>
              </div>
              <div class="col l2 m4 s6 hoverable">
                <div>
                  <img src="images/icon-5.png" id="ass-images">
                </div>
              </div>
              <div class="col l2 m4 s6 hoverable">
                <div>
                  <img src="images/icon-6.png" id="ass-images">
                </div>
              </div>
            </div>
          </div>
          </section>


For the styling add the following code to your CSS file

    #ass-images {
      margin-left: -15px
    }

Save the file and view the results in a browser.

![](https://image.ibb.co/hfp3Uc/Capture.png)

#### Code Analysis

After the opening `<section>` tag we added a `<div>` tag with a class`<row>` and inside it we created seven additional `<div>` tags with class  `col`.

Inside the first `<div class="col">` tag we insert the code for the same header we've been using in the previous sections.

This is followed by a `<br>` tag in order to create the next set of columns for displaying the pictures of various associates.

In the remaining `<div>` tags we inserted images representing the brands associated with the business.


#### Step 6: Recent Blog Posts

This section will feature the three most recent posts from the blog page on the website.

The HTML code for this section 


      <section>
        <div class="container red accent-3 white-text"">
          <div class="row hoverable">
            <div class="col l12 m12 s12">
            <div class="valign-wrapper" style="text-align: center; padding-left: 300px">
              <h3>Recent Blog Posts</h3>
            </div>
          </div>
          <br>
          <div class="col l12 m12 s12">
            <div class="valign-wrapper" style="text-align: center; padding-left: 375px;">
              <p>Get Updates About Our Activities</p>
            </div>
          </div>
          </div>
        </div>
        

        <div class="container">

        <div class="row">
          <div class="col s12 m4 l4">
            <div class="card hoverable">
              <div class="card-image">
                <img src="images/blog-1.jpg">
                <span class="card-title">Card Title</span>
              </div>
              <div class="card-content">
                <p>I am a very simple card. I am good at containing small bits of information.
                I am convenient because I require little markup to use effectively.</p>
              </div>
              <div class="card-action">
                <a href="#">This is a link</a>
              </div>
            </div>
          </div>

          <div class="col s12 m4 l4">
            <div class="card hoverable">
              <div class="card-image">
                <img src="images/blog-2.jpg">
                <span class="card-title">Card Title</span>
              </div>
              <div class="card-content">
                <p>I am a very simple card. I am good at containing small bits of information.
                I am convenient because I require little markup to use effectively.</p>
              </div>
              <div class="card-action">
                <a href="#">This is a link</a>
              </div>
            </div>
          </div>

          <div class="col s12 m4 l4">
            <div class="card hoverable">
              <div class="card-image">
                <img src="images/blog-3.jpg">
                <span class="card-title">Card Title</span>
              </div>
              <div class="card-content">
                <p>I am a very simple card. I am good at containing small bits of information.
                I am convenient because I require little markup to use effectively.</p>
              </div>
              <div class="card-action">
                <a href="#">This is a link</a>
              </div>
            </div>
          </div>

        </div>

      </div>

      </section>
    
          <section>
    
            <div class="container">
              <a class="waves-effect waves-light btn red accent-3 white-text hoverable" id="blog-btn">VISIT BLOG</a>
            </div>
    
          </section>

The CSS styling for this section 

    #blog-btn {
      margin-top: 50px;
      margin-bottom: 100px;
      margin-left: 400px;
    }


#### Code Analysis

Starting with a `<section>`  tag followed by a `<div>` with class  `container` and another with class attribute value `<row>` .

Inside the new `<div class="row">` we insert the code for the section header.

To add the layout for the blog posts we created two new `<div>` with class  `container` and `row` respectively.

 `<div class="row">` is a child element of `<div class="container">`.

Inside the `<div class="row">` element we created three new columns using a new `<div class="col">` .

Inside each individual column we create a card to display the excerpts of our blog posts with an image.

To do this we add a new `<div class="card">` tag. Inside the new `<div>` element we add a we create three extra `<div>` tags and one `<span>` tag which is a child element of the first `<div>` tag. 

Both `<div>` tags are assigned the attribute class values `card-image` and `card-content` and  `card-action` respectively while the `<span>` tag is assigned a class attribute value of `card-title`.

The `<div class="card-image">` will contain featured post image for each post displayed in the card.

The `<div class="card-content">` will contain all the main body content for each card.

The `<div class="card-action">` will contain the link leading to the full post for each excerpt.

The `<span>` tag will contain the titles of each individual card.

#### Step 7: Footer

This is the last section we will be working on. In this section we will be adding a footer section to the page.

The HTML code for this section

    <<footer class="page-footer">>
                <div class="container">
                  <div class="row">
                    <div class="col l3 m3 s6" id="footer-area">
                      <h5 class="white-text">Footer Content</h5>
                      <p class="grey-text text-lighten-4">You can use rows and columns here to organize your footer content.</p>
                    </div>
                    
                    <div class="col l3 m3 s6" id="footer-area">
                      <h5 class="white-text">Footer Content</h5>
                      <p class="grey-text text-lighten-4">You can use rows and columns here to organize your footer content.</p>
                    </div>
    
                    <div class="col l3 m3 s6" id="footer-area">
                      <h5 class="white-text">Footer Content</h5>
                      <p class="grey-text text-lighten-4">You can use rows and columns here to organize your footer content.</p>
                    </div>
    
                    <div class="col l3 m3 s6" id="footer-area">
                      <h5 class="white-text">Links</h5>
                      <ul>
                        <li><a class="grey-text text-lighten-3" href="#!">Link 1</a></li>
                        <li><a class="grey-text text-lighten-3" href="#!">Link 2</a></li>
                        <li><a class="grey-text text-lighten-3" href="#!">Link 3</a></li>
                        <li><a class="grey-text text-lighten-3" href="#!">Link 4</a></li>
                      </ul>
                    </div>
                  </div>
                </div>
                <div class="footer-copyright">
                  <div class="container">
                  Lorem Ipsum
                  <a class="grey-text text-lighten-4 right" href="#!">More Links</a>
                  </div>
                </div>
              <</footer>>

**N.B: REMOVE THE EXTRA BRACES AROUND THE  `<<footer class="page-footer">>` AND `<</footer>>`**

CSS styles for this section

        #footer-area {
      text-align: center;
    }

Screenshot of the footer area

![](https://image.ibb.co/dCnifH/Capture.png)


#### Code Analysis

Opened with a `<footer>` tag and class `page-footer` followed by two `<div>` tags with class  `container` and `row` respectively. `row` is a child element of `container`.

Inside the `<div class="row">` we created four new columns using `<div>` with class `col` and id `footer-area`. 

In the first three `col` tags contains `<h3>` and `<p>` tags for displaying different information about the business.


The last `col` tag contains an unordered list of links that can be used to link any vital document or page on the website.

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@gotgame/using-materializecss-to-create-a-basic-homepage-layout-for-a-business-website">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorgotgame
permlinkusing-materializecss-to-create-a-basic-homepage-layout-for-a-business-website
categoryutopian-io
json_metadata"{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":23974149,"name":"materialize","full_name":"Dogfalo/materialize","html_url":"https://github.com/Dogfalo/materialize","fork":false,"owner":{"login":"Dogfalo"}},"pullRequests":[],"platform":"github","type":"tutorials","tags":["utopian-io","steemstem","nerdgarage","programming","technology"],"links":["http://materializecss.com/getting-started.html","https://github.com/olatundeee/homepage-layout/archive/master.zip"],"moderator":{"account":"scipio","time":"2018-03-17T13:54:45.325Z","reviewed":true,"pending":false,"flagged":false},"questions":[{"question":"Is the project description formal?","answers":[{"value":"Yes it’s straight to the point","selected":true,"score":10},{"value":"Need more description ","selected":false,"score":5},{"value":"Not too descriptive","selected":false,"score":0}],"selected":0},{"question":"Is the language / grammar correct?","answers":[{"value":"Yes","selected":true,"score":20},{"value":"A few mistakes","selected":false,"score":10},{"value":"It's pretty bad","selected":false,"score":0}],"selected":0},{"question":"Was the template followed?","answers":[{"value":"Yes","selected":true,"score":10},{"value":"Partially","selected":false,"score":5},{"value":"No","selected":false,"score":0}],"selected":0},{"question":"Is there information about the additional frameworks?","answers":[{"value":"Yes, everything is explained","selected":true,"score":5},{"value":"Yes, but not enough","selected":false,"score":3},{"value":"No details at all","selected":false,"score":0}],"selected":0},{"question":"Is there code in the tutorial?","answers":[{"value":"Yes, and it’s well explained","selected":true,"score":5},{"value":"Yes, but no explanation","selected":false,"score":3},{"value":"No","selected":false,"score":0}],"selected":0},{"question":"Is the tutorial explains technical aspects well enough?","answers":[{"value":"Yes, it teaches how and why about technical aspects","selected":false,"score":5},{"value":"Yes, but it’s not good/enough","selected":true,"score":3},{"value":"No, it explains poorly","selected":false,"score":0}],"selected":1},{"question":"Is the tutorial general and dense enough?","answers":[{"value":"Yes, it’s general and dense","selected":true,"score":5},{"value":"Kinda, it might be more generalized","selected":false,"score":3},{"value":"No, it’s sliced unnecessarily to keep part number high","selected":false,"score":0}],"selected":0},{"question":"Is there an outline for the tutorial content at the beginning of the post","answers":[{"value":"Yes, there is a well prepared outline in β€œWhat will I learn?” or another outline section","selected":true,"score":5},{"value":"Yes, but there is no proper listing for every step of the tutorial or it’s not detailed enough","selected":false,"score":3},{"value":"No, there is no outline for the steps.","selected":false,"score":0}],"selected":0},{"question":"Is the visual content of good quality?","answers":[{"value":"Yes","selected":true,"score":5},{"value":"Yes, but bad quality","selected":false,"score":3},{"value":"No","selected":false,"score":0}],"selected":0},{"question":"Is this a tutorial series?","answers":[{"value":"Yes","selected":false,"score":5},{"value":"Yes, but first part","selected":false,"score":3},{"value":"No","selected":true,"score":0}],"selected":2},{"question":"Is the tutorial post structured?","answers":[{"value":"Yes","selected":true,"score":5},{"value":"Not so good","selected":false,"score":3},{"value":"No","selected":false,"score":0}],"selected":0}],"score":75}"
created2018-03-14 12:41:24
last_update2018-03-17 13:54:45
depth0
children10
last_payout2018-03-21 12:41:24
cashout_time1969-12-31 23:59:59
total_payout_value28.366 HBD
curator_payout_value12.452 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25,400
author_reputation23,969,707,386,372
root_title"Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,364,012
net_rshares15,898,929,338,118
author_curate_reward""
vote details (33)
@autofreak ·
$0.02
This is cool bro, well detailed.
πŸ‘  
properties (23)
authorautofreak
permlinkre-gotgame-using-materializecss-to-create-a-basic-homepage-layout-for-a-business-website-20180319t185752880z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-19 18:58:00
last_update2018-03-19 18:58:00
depth1
children1
last_payout2018-03-26 18:58:00
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation14,084,098,064,393
root_title"Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,398,415
net_rshares7,484,704,307
author_curate_reward""
vote details (1)
@gotgame ·
Thanks bro
properties (22)
authorgotgame
permlinkre-autofreak-re-gotgame-using-materializecss-to-create-a-basic-homepage-layout-for-a-business-website-20180319t221542521z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-19 22:15:57
last_update2018-03-19 22:15:57
depth2
children0
last_payout2018-03-26 22:15:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation23,969,707,386,372
root_title"Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,424,154
net_rshares0
@erwinpante ·
Follow me @erwinpante and I follow you. thanks
properties (22)
authorerwinpante
permlinkre-gotgame-using-materializecss-to-create-a-basic-homepage-layout-for-a-business-website-20180315t001442046z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["erwinpante"],"app":"steemit/0.1"}
created2018-03-15 00:14:42
last_update2018-03-15 00:14:42
depth1
children0
last_payout2018-03-22 00:14:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation1,213,880,522
root_title"Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,479,173
net_rshares0
@jalasem · (edited)
$0.03
nice piece, great article with detailed explanation
πŸ‘  ,
properties (23)
authorjalasem
permlinkre-gotgame-using-materializecss-to-create-a-basic-homepage-layout-for-a-business-website-20180314t142834860z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-03-14 14:28:42
last_update2018-03-14 14:29:00
depth1
children1
last_payout2018-03-21 14:28:42
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation1,431,371,574,991
root_title"Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,384,471
net_rshares9,188,801,447
author_curate_reward""
vote details (2)
@gotgame ·
Thanks
properties (22)
authorgotgame
permlinkre-jalasem-re-gotgame-using-materializecss-to-create-a-basic-homepage-layout-for-a-business-website-20180314t144058140z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-14 14:41:03
last_update2018-03-14 14:41:03
depth2
children0
last_payout2018-03-21 14:41:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation23,969,707,386,372
root_title"Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,387,064
net_rshares0
@odesias ·
$0.02
This looks cool! Thank you for sharing @gotgame.
πŸ‘  
properties (23)
authorodesias
permlinkre-gotgame-using-materializecss-to-create-a-basic-homepage-layout-for-a-business-website-20180314t124422321z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["gotgame"],"app":"steemit/0.1"}
created2018-03-14 12:44:21
last_update2018-03-14 12:44:21
depth1
children1
last_payout2018-03-21 12:44:21
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation563,637,980
root_title"Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,364,517
net_rshares8,423,300,299
author_curate_reward""
vote details (1)
@gotgame ·
Thanks
πŸ‘  
properties (23)
authorgotgame
permlinkre-odesias-re-gotgame-using-materializecss-to-create-a-basic-homepage-layout-for-a-business-website-20180314t144134741z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-14 14:41:36
last_update2018-03-14 14:41:36
depth2
children0
last_payout2018-03-21 14:41:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation23,969,707,386,372
root_title"Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,387,171
net_rshares499,212,572
author_curate_reward""
vote details (1)
@scipio ·
$0.42
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
πŸ‘  , ,
properties (23)
authorscipio
permlinkre-gotgame-using-materializecss-to-create-a-basic-homepage-layout-for-a-business-website-20180317t135451250z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-03-17 13:54:51
last_update2018-03-17 13:54:51
depth1
children0
last_payout2018-03-24 13:54:51
cashout_time1969-12-31 23:59:59
total_payout_value0.314 HBD
curator_payout_value0.101 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation34,229,826,851,736
root_title"Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,957,329
net_rshares119,325,930,006
author_curate_reward""
vote details (3)
@steemitboard ·
$0.02
Congratulations @gotgame! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@gotgame) Award for the number of upvotes

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> Upvote this notification to help all Steemit users. Learn why [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
πŸ‘  
properties (23)
authorsteemitboard
permlinksteemitboard-notify-gotgame-20180320t011644000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2018-03-20 01:16:42
last_update2018-03-20 01:16:42
depth1
children0
last_payout2018-03-27 01:16:42
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length673
author_reputation38,975,615,169,260
root_title"Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,446,787
net_rshares6,994,634,382
author_curate_reward""
vote details (1)
@utopian-io ·
$0.03
### Hey @gotgame I am @utopian-io. I have just upvoted you!
#### Achievements
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
πŸ‘  
properties (23)
authorutopian-io
permlinkre-gotgame-using-materializecss-to-create-a-basic-homepage-layout-for-a-business-website-20180318t032803486z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-03-18 03:28:03
last_update2018-03-18 03:28:03
depth1
children0
last_payout2018-03-25 03:28:03
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,005
author_reputation152,955,367,999,756
root_title"Using MaterializeCSS to Create a Basic Homepage Layout For a Business Website"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,065,891
net_rshares8,731,914,985
author_curate_reward""
vote details (1)