Thursday, December 9, 2021

Pill Button

 Pill Button

 <!DOCTYPE html>

<html>


<head>

    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <link rel="STYLESHEET" type="text/css" href="web.css">

    <title>web design</title>

</head>


<body>

<h1>Pill Button</h1>

<button class="btn">Pill Button 1</button>

<button class="btn">Pill Button 2</button>


</body>


</html>


CSS Pill Button Style

 .btn{

    background-color: #ddd;

    color: #000;

    border: none;

    padding:10px 20px;

    text-align: center;

    text-decoration: none;

    display: inline-block;

    margin:4px 2px;

    cursor: pointer;

    border-radius:16px;

}

.btn:hover{

    background-color:#f1f1f1 ;

}

No comments:

Post a Comment

JavaScript Animated

  JavaScript Animated <!DOCTYPE html> <html> <style> #myContainer {   width: 400px;   height: 400px;   position: relative;...