Instagram Twitter

Halo Halo | Bullet Journal, Blog Post Ideas and More

    • Home
    • About
    • Hire Me


    Hey guys!

    This is going to be quite a long and detailed post on some of my favorite go-to easy CSS designs that could be easily implemented on your page so buckle up.

    So on my previous post, HTML Made Easy, I had briefly discussed about the four essentials or rather necessary elements in HTML and on this post you will be able to actually see that it is indeed the building blocks of a webpage. We will be tackling a bit of CSS (Cascading Style Sheet) here and I will do my best to explain them in an easy to understand lingo so that you can follow.

    Courtesy of my go-to site whenever I forget or want to go back on a certain topic, I have gathered three CSS designs that are easy to manipulate and understand even for those bloggers that are inexperience when it comes to coding.

    I have provided pictures for you to see how and what it's going to look like so that you can be guided visually. 



    1. CSS Box Model

    CSS Box Model refers to a box that wraps around an HTML element as you can see on the picture below on the left side. 



    Because of my previous post, you may be more familiar with this arrangement:


    <!DOCTYPE html>
    <html>
    <head>

      <title> </title>

    <head>
    <body>

    </body>
    </html>


    But now that we're going to be manipulating an HTML element, we have added the <style> </style> element for us to put our CSS codes in. This element would go between the <head> </head>, so it is going to look something like this:


    <!DOCTYPE html>
    <html>
    <head>

      <title> </title>
      <style>


      </style>
    </head>
    <body>

    </body>
    </html>


    Now that we have that covered let's talk about what we are going to put in between those <style> </style> element for our CSS Box Model to work.


    div{
    background-color: #40a977;
    width: 300px;
    border: 7px;
    padding: 10px;
    margin: 25px;
    }


    • background-color → Whatever value you put in this property, may it be #40a977 (green), blue, red, etc., this is what the background color of your box is going to be.

    • width → This is the width of your box. The longer (500px and up) the width, the longer your box is going to be horizontally.

    • border → This goes around your box or rather the padding of your box. The thicker it is (10px and up) the more visible it is going to be.

    • padding → This is the space between your text and the border.

    • margin → This is the area around the CSS Box Model.

    • div → This is the selector. We will be using this on an HTML element that we want to style.

    Now that that is out of the way, let's move on to our final step which is incorporating that CSS code into our HTML. 

    Under the <body> </body> we will write <div> </div>, and in between those tags is where our text will go.

    And that's it, you have your CSS Box Model!


    2. CSS Outline

    CSS Outline is a line that is drawn around our <p> </p> or paragraph. There are ten types of this but here I'm only going to show you three of my personal favorites which are the dashed outline, groove outline, and outset outline.

    Here is the list of the remaining types of outline:
    • dotted
    • solid
    • double
    • ridge
    • inset
    • none
    • hidden



    This is fairly simple to make because the CSS code is just the same except for a few parts. Just add the following between your <style> </style> element:



    p.outline type{
    outline-style: outline type;
    }


    You just need to change the outline type to whatever outline type you wish for it to be.

    Now for our HTML it's as simple as the CSS one you just have to change a few parts as well. Between the <body> </body> tags add the following:



    <p class="outline type" align="center/right/left"> your text goes in between this tags </p>


    You can align your text on the center, right, or left.

    And that's it, you have an outline!


    3. CSS Font-Variant

    "The font-variant property specifies whether or not a text should be displayed in a small-caps font.

    In a small-caps font, all lowercase letters are converted to uppercase letters. However, the converted uppercase letters appears in a smaller font size than the original uppercase letters in the text." -w3school









    This last favorite CSS design of mine is the most easiest among the two above. For the CSS code add the following in between your <style> </style> element:


    p.small{
    font-variant: small-caps;
    }




    And as for our HTML, add the following under the <body> </body> element:


    <p class= "small"> your text goes in between this tags </p>




    And that's it for the font-variant!

    I hope you guys found this post useful and helpful for those who wants to add a little flavor to your blog post, comments are welcome below. See you on my next post!

    Continue Reading


    Hey guys!

    I've started my 2018 with a topic that I am quite knowledgeable on, Basic HTML Codes Every Blogger Should Know, with that I have decided to blog about programming for the rest of this month to spread knowledge to those who wants to learn HTML and CSS but in an easy way and easy to understand lingo.

    This week I am going to introduce to you what an HTML is, what it does, and its importance to your blog or website so without further ado, let's get into it.

    What is an HTML?

    HTML is shortened for Hypertext Markup Language. Just like how an atom is the building blocks of matter, HTML is the building blocks of a webpage. There are four elements that is essential to it and these are html, head, title, and body.


    HTML elements are represented by tags, tags such as the ones I have mentioned in my last post image, hyperlink, headings, etc. Some of the most used tags by programmers are paragraph <p>, line break <br>, h2 heading <h2>, and strong <strong> or bold <b>. 

    Take note as I say those are just some of the tags that we often use a lot especially in making websites. So there are a lot more of it and if you're interested to learn more about it stay tune for my next blog post!


    <!DOCTYPE html>

    This is a declaration that defines a document to be HTML5. (Source) 

    You may be wondering what's the difference between an HTML and HTML5, to make it easy to understand there's not much of a difference between the two. HTML5 is just the latest and greatest version of HTML and that's it.


    Elements Explained

    I have mentioned the four essential elements on an html and now I'm going to explain them briefly what is it about. 

    • html is the root of your page, it is the skin that covers your body.
    • head contains the meta information about the document, it is where your brain is at and with that said...
    • title is the title for the document (the one that you see on your tab alongside the favicon), it is your identity, who you are as a person, how you think, how you see things, I think therefore I am.
    • body contains the content, tags are used here. 


    HTML is the building blocks of a webpage but if you compared it to CSS (Cascading Style Sheet), which we are going to tackle later on this month, and JavaScript, it is nothing but a mere skeletal form of your website. 

    It is the core of your website and having a good foundation makes it easy to manipulate or rather implement designs which are coded by the use of CSS.


    That is it for today's blog, let me know if you found it useful!


    Continue Reading


    Happy New Year!

    I can't believe it's been two years already since I've started blogging here and there. Time just flew by crazy fast. I wouldn't say that I am now a veteran, I still have a lot to learn and to improve in terms of blogging but over the past two years that I have been doing so I couldn't help but notice the significance of HTML and CSS have on your blog.

    The more aesthetically pleasing the blog is to a readers eyes, the more likely they're going to like it and the chances of them staying and subscribing are very high.

    Of course the content of your blog matters too but just like how a human being is attracted to another, you have to atleast look presentable and decent. Your blog has to capture the attention of your reader first with the theme and layout of your blog.

    Today I am going to teach you the basics of HTML that every blogger should know. These are also the basic attributes that I was taught in school so I'm [definitely] going to be having fun writing this post.


    Image
    <img src="#" alt="this text is going to show up when your image fails to load">

    You can configure its height and width. The hashtag is where the link is supposed to go.

    Example: <img src="thenameofyourimage.jpg" alt="a picture of my hand with the thing">




    Image Link
    <a href="#"><img src="#"></a>

    Clicking this image will direct you to another blog post or site. Click the image below!

    Example: <a href="http://danidotyes.blogspot.com/2017/02/mudfacialmask.html"><img src="thenameofyourimage.jpg"></a>






    Text Link
    <a href="#">this text is now a link</a>

    Example:
    The Benefits of the Rejuvenating: Glorious Mud Facial Mask


    Favicon
    <head>
         <link rel="#" type="#" href="#">
    </head>

    Example: <link href='/favicon.ico' rel='icon' type='image/x-icon'/>

    Don't forget to convert your image to .ico

    There's this site that I've used to convert the favicon that I made for my blog (which you could see above) Favicon & App Icon Generator. It also includes the <link href, rel, and type> that you can easily copy and paste to the html of your blog. Your favicon needs to be 16 x 16 pixels in terms of its height.

    So the favicon needs to be in between the head element for it to work.

    You can't really see it well since it's 16 x 16 pixels but here's the look of the favicon that I've made. This is not the final design of my favicon, I'm still thinking of a good design to represent my blog.


    If you want I can make your very own favicon to finalized the look of your blog, just subscribe to my blog and let me know!


    Headings
    HTML includes six levels of headings which are

    <h1> </h1>
    <h2> </h2>
    <h3> </h3>
    <h4> </h4>
    <h5> </h5>
    <h6> </h6>

    The text goes in between those tags.

    This is h1

    This is h2

    This is h3

    This is h4

    This is h5
    This is h6
    So that is it for this post if you want more of these kind let me know in the comments below, also let me know if this was helpful for you!




    Check out my recent post if you're interested to learn more about HTML!
    Continue Reading
    Newer
    Stories
    Older
    Stories

    About me

    Photo Profile
    Daniella Content Writer

    Daniella is a lifestyle and beauty blogger. A graduate of a reputable institution, De La Salle University, with honors for two consecutive years.


    Halo-Halo was created to spread knowledge, tips & tricks to fellow bloggers and spread joy of being a blogger.

    Read More


    Instagram @danidotyes

    Follow Me

    • twitter
    • bloglovin
    • instagram

    Followers

    Blog Archive

    • ▼  18 (10)
      • ►  July (1)
      • ►  June (2)
      • ►  May (2)
      • ►  April (1)
      • ►  February (1)
      • ▼  January (3)
        • Designing Your Blog with HTML and CSS
        • HTML Made Easy
        • Basic HTML Codes Every Blogger Should Know
    • ►  17 (8)
      • ►  December (2)
      • ►  August (1)
      • ►  February (3)
      • ►  January (2)
    • ►  16 (10)
      • ►  December (5)
      • ►  November (5)

    Popular Posts

    • Health & Beauty: AZTEC SECRET Indian Healing Clay Review
      Hey guys! It has been a really long time since I've last posted on this blog. I know I posted a life update [blog] post just about ...
    • The Ultimate Beginners Guide to Starting a Bullet Journal
      Back in 2007 Ryder Carroll introduced the idea of bullet journaling to his colleague who was planning a wedding, and on August 2013 he ...

    Total Pageviews

    Twitter instagram pinterest bloglovin google plus

    Created with by BeautyTemplates

    Back to top