Friday, October 11, 2019

Transparent Login Form in HTML and CSS

In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Background Picture


Program Listing

index.html

<html>
<head>
<meta charset="utf-8">
<title>LOGIN FORM DESIGN</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="box">
<h2>Login Form</h2>
<form>
<div class="inputBox">
<input type="text" name="" required="">
<label>Username</label>
</div>
<div class="inputBox">
<input type="password" name="" required="">
<label>Password</label>
</div>
<input type="submit" name="" value="Submit">
</form>
</div>
</body>
</html>


style.css

body
{
margin:0;
padding:0;
font-family:sans-serif;
background:url(nature.jpg);
background-size:cover;
}

.box
{
position:absolute;
top:50%;
Left:50%;
transform:translate(-50%,-50%);
width:500px;
padding:40px;
background:rgba(0,0,0,.6);
box-sizing:border-box;
box-shadow:0 15px 25px rgba(0,0,0,.5);
border-radius:10px;
}
.box h2
{
margin:0 0 30px;
padding:0;
color:White;
text-align:center
}
.box .inputBox
{
position:relative;
}
.box .inputBox input
{
width:100%;
padding:8px 0;
font-size:16px;
color:#fff;
Letter-spacing:1px;
margin-bottom:10px;
border:none;
border-bottom:1px solid #fff;
outline:none;
background:transparent;
{
.box .inputBox label
{
position:absolute;
top:0;
Left:0;
Letter-spacing:1px;
padding:10px 0;
font-size:14px;
color:#fff;
pointer-events:none;
transition:.5s;
}
.box .inputBox input:focus ~ label,
.box .inputBox input:valid ~ label
{
Top:-18px;
Left:0;
color:#03a9f4;
font-size:14px;
}
.box input[type="submit"]
{
background:transparent;
border:none;
outline:none;
color:#fff;
background:#03a9f4;
padding:10px 20px;
cursor:pointer;
border-radius:5px;
}

Pagination and Margins in HTML and CSS

In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Sample Program Output


Program Listing

index.html

<!Doctype html>
<html>
<head>
<style>
.pagination {
display: inline-block;
}
.pagination a {
color:black;
float:left;
padding: 8px 16px;
text-decoration: none;
transition: background-color .3s;
border: 1px solid #ddd;
margin: 0 4px;
}
.pagination a.active {
background-color: #4CAF50;
color: white;
border: 1px solid #4CAF50;
}
.pagination a:hover:not(.active)
{ background-color: #ddd;}
</style>
</head>
<body>
<h2>Pagination with Margins</h2>
<div class="pagination">
<a href="#"> &laquo;</a>
<a href="#"> 1</a>
<a href="#" class="active">2</a>
<a href="#"> 3</a>
<a href="#"> 4</a>
<a href="#"> 5</a>
<a href="#"> 6</a>
<a href="#"> &raquo;</a>
</div>
</body>
</html>



Loading Animation in HTML and CSS

In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Program Listing

index.html

<!DOCTYPE HTML>

<html>

<head>
    <meta charset="utf-8">
  <title>Glowing Loader Ring Animation</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <div class="ring">
        Loading
        <span></span>
    </div>
</body>

</html>


style.css

body
{
    margin:0;
    padding:0;
    background: #262626;
}
.ring
{
    position: absolute;
    top:50%;
    Left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 150px;
    background: transparent;
    border: 3px solid #3c3c3c;
    border-radius:50%;
    text-align: center;
    Line-height:150px;
    font-family: sans-serif;
    font-size: 20px;
    color:#fff000;
    Letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #fff000;
    box-shadow: 0 0 20px rgba(0,0,0,.5);
}
.ring:before
{
    content: '';
    position: absolute;
    top: -3px;
    Left: -3px;
    width: 100%;
    height: 100%;
    border  3px solid transparent;
    border-top: 3px solid #fff000;
    border-right: 3px solid #fff000;
    border-radius: 50%;
    animation: animateCircle 2s linear infinite;
}
span
{
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    Left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin:left;
    animation: animate 2s linear infinite;
}
span:before
{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: transparent;
    top: -6px;
    right: -8px;
    box-shadow: 0 0 20px #fff000;
}
@keyframes animateCircle
{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }

}
@keyframes animate
{
    0%
    {
        transform: rotate(45deg);
    }
    100%
    {
        transform: rotate(405deg);
    }

}


Hover Effects in HTML and CSS

In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Program Listing

index.html

<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<button class="btn btn1">Hover me</button>
<button class="btn btn2">Hover me</button>
<button class="btn btn3">Hover me</button>
<button class="btn btn4">Hover me</button>
</div>
</body>
</html>

style.css

body
{
margin: 0;
padding: 0;
}

.container
{
text-align: center;
margin-top: 360px;
}

.btn
{
border: 1px solid #3498db;
background: none;
padding: 10px 20px;
font-size: 20px;
font-family: "montserrat";
cursor: pointer;
margin: 10px;
transition: 0.8s;
position: relative;
overflow: hidden;
}

.btn1,.btn2
{
color: #3498db;
}

.btn3,.btn4
{
color: #fff;
}

.btn1:hover,.btn2:hover
{
color: #fff;
}

.btn3:hover,.btn4:hover
{
color: #3498db;
}

.btn::before
{
content: "";
position: absolute;
left: 0;
width: 100%;
heigth: 0%;
background: #3498db;
z-index: -1;
transition: 0.8s;
}

.btn1::before,.btn3::before
{
top: 0;
border-radius: 0 0 50% 50%;
}

.btn2::before,.btn4::before
{
bottom: 0;
border-radius: 50% 50% 0 0;
}

.btn3::before,.btn4::before
{
heigth: 180%;
}

.btn1:hover::before,.btn2:hover::before
{
height: 180%;
}

.btn3:hover::before,.btn4:hover::before
{
height: 0%;
}



Drop Down Menu in HTML and CSS

In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Background Image of our web page




Sample Program Output 


Program Listing

index.html

<html>
<head>
<link rel="icon" href="images/pat.ico" type="image/x-icon" />
<link rel="shortcut icon" href="images/pat.ico" type="image/x-icon" />
</head>
<link href='style.css' rel='stylesheet'>
<ul>
<li><a>Home</a></li>
<li><a>About</a>
<ul>
<li><a>History</a></li>
<li><a>Services</a></li>
<li><a>Mission &amp; Vision</a></li>
<li><a>Resources</a></li>
</ul>
</li>
<li><a>Things to do</a>
<ul>
<li><a>Activities</a></li>
<li><a>Parks</a></li>
<li><a>Shops</a></li>
<li><a>Events</a></li>
</ul>
</li>
<ul>
            <li><a>Contact us</a></li>
        </ul>
<ul>
<li><a>News</a></li>
</ul>

</html>


style.css

body {
background: url('Background/nature.jpg') no-repeat;
background-size: cover;
font-family: Arial;
color: white;


padding:50px 80px;
font-family:"Lucida Grande","bitstream vera sans","trebuchet ms",sans-serif,verdana;


/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}

}

ul {
margin:0px;
padding:0px;
list-style: none;
}
ul li {
float:left;
width:200px;
height:40px;
background-color:black;
opacity: .8;
line-height: 40px;
text-align: center;
font-size: 20px;
margin-right: 2px;
}
ul li a {
text-decoration: none;
color:white;
display:block;
}
ul li a:hover{
background-color:blue;
}
ul li ul li {
display:none;
}
ul li:hover ul li {
display:block;
}

Glowing Gradient Button in HTML and CSS

 In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Program Listing

index.html

<html>
<head>
<title>Glowing Gradient Button</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<a href="#">Button</a>
</body>
</html>

style.css

body
{
margin:0;
padding:0;
background:#000;
}
a{
position:absolute;
top:50%;
Left:50%;
transform:translate(-50%,-50%);
width:200px;
heigth:60px;
text-align:center;
Line-height:60px;
color:#fff;
font-size:24px;
text-transform:uppercase;
text-decoration:none;
font-family:sans-serif;
box-sizing:border-box;
background:linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
background-size:400%;
border-radius:30px;
z-index:1;
}
a:hover
{
animation:animate 8s linear infinite;
}
@keyframes animate
{
0%
{
background-position:0%;
}
100%
{
background-position:400%;
}
}
a:before
{
content: '';
position:absolute;
top:-5px;
Left:-5px;
right:-5px;
bottom:-5px;
z-index:-1;
background:linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
background-size:400%;
border-radius:40px;
opacity:0;
transition: 0.5s;
}
a:hover:before
{
filter:blur(20px);
opacity:1;
animation:animate 8s linear infinite;
}