DEV Community

Freecodez
Freecodez

Posted on

2 1 1 1 1

Mac command + C 3D buttons using html, css

Hey there, You are most welcome to this article. I hope you will enjoy this article. If you like this article then please share this article with your friends and colleagues. If you have any questions or suggestions regarding this article then please comment down below.

Mac command + C 3D buttons using html, css

Mac command + C 3D buttons using html, css

For full source code visit : https://freecodez.com/post/7jypdpp

<!-- https://freecodez.com -->
<div class="container">
    <button class="btn cmd">
        <svg fill="#fff" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" 
     width="25px" height="25px" viewBox="0 0 80 80" xml:space="preserve">
<g>
    <path d="M64,48L64,48h-8V32h8c8.836,0,16-7.164,16-16S72.836,0,64,0c-8.837,0-16,7.164-16,16v8H32v-8c0-8.836-7.164-16-16-16
        S0,7.164,0,16s7.164,16,16,16h8v16h-8l0,0l0,0C7.164,48,0,55.164,0,64s7.164,16,16,16c8.837,0,16-7.164,16-16l0,0v-8h16v7.98
        c0,0.008-0.001,0.014-0.001,0.02c0,8.836,7.164,16,16,16s16-7.164,16-16S72.836,48.002,64,48z M64,8c4.418,0,8,3.582,8,8
        s-3.582,8-8,8h-8v-8C56,11.582,59.582,8,64,8z M8,16c0-4.418,3.582-8,8-8s8,3.582,8,8v8h-8C11.582,24,8,20.417,8,16z M16,72
        c-4.418,0-8-3.582-8-8s3.582-8,8-8l0,0h8v8C24,68.418,20.418,72,16,72z M32,48V32h16v16H32z M64,72c-4.418,0-8-3.582-8-8l0,0v-8
        h7.999c4.418,0,8,3.582,8,8S68.418,72,64,72z"/>
</g>
</svg>
        command</button>
    <a href="https://freecodez.com/" class="btn c">C</a>
</div>
Enter fullscreen mode Exit fullscreen mode

Source Code : https://freecodez.com/post/7jypdpp

For more such articles visit : https://freecodez.com

Sentry blog image

How to reduce TTFB

In the past few years in the web dev world, we’ve seen a significant push towards rendering our websites on the server. Doing so is better for SEO and performs better on low-powered devices, but one thing we had to sacrifice is TTFB.

In this article, we’ll see how we can identify what makes our TTFB high so we can fix it.

Read more

Top comments (0)