adc

clicks

how to logo make using html and css source code

 

Back then we used graphic design softwares like photoshop to design logos and icons. But now we can design almost anything using the power of CSS3. Designing logos and icons using Cascading Style Sheets will make your site load faster than using images. Today i am going discuss how to design CSS3 logo using basic properties.
 
 

 

HTML

Before we start writing code first, we need to create a primary structure of the HTML document, so that the browser can understand and start working. The basic HTML structure looks like the following.

After writing the primary structure of the HTML document, you will also write the tags and content you need. After that, you can see the output in your browser. We know that HTML Sudu Mae is used for exposing content in a basic format. To complete our content we need to use CSS, which is an HTML insert and it creates an engaging user interface.

 <!DOCTYPE html>
<html>
<head>
    <title>LOGO MAEK</title>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>

    <div class="box1"></div>
    <div class="box2"></div>
    <div class="box3">
        <h1>LOGO</h1>
    </div>

</body>
</html>

CSS 

Now, we have time to improve the HTML content, for that, we need to add CSS to the HTML file. CSS can be added to HTML documents in a total of three ways, here we are using outside CSS design using CSS will arrive here after typing and see the output in your browser

 body{
    background: #003366;
    margin: 0;
    padding: 0;
}

.box3{
    position: absolute;
    top: 20%;
    left: 60%;
    height: 400px;
    width: 400px;
    background-color: #a51414;
    border-radius: 50px;
    box-shadow: -9px 9px 12px rgba(0,0,0,.5);
    transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(-50%, -50%);
}

.box2{
    position: absolute;
    top: 30%;
    left: 60%;
    height: 400px;
    width: 400px;
    background-color: #a51414;
    border-radius: 50px;
    box-shadow: -9px 9px 12px rgba(0,0,0,.5);
    transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(-50%, -50%);
}

.box1{
    position: absolute;
    top: 40%;
    left: 60%;
    height: 400px;
    width: 400px;
    background-color: #a51414;
    border-radius: 50px;
    box-shadow: -9px 9px 12px rgba(0,0,0,.5);
    transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(-50%, -50%);
}

h1{
    font-size: 110px;
    color: white;
    padding: 100px;
    padding-top: 195px;
    margin: -70px;
    font-family: serif;
    text-transform: uppercase;
    text-shadow: -9px 9px 12px rgba(0,0,0,.5);
}

 

 Watch Videos

 

More Videos 

 

Youtube Channel

 

 

 

 

 

 

how to logo make using html and css source code how to logo make using html and css source code Reviewed by easycoding on August 14, 2020 Rating: 5

No comments:

Powered by Blogger.