Create Awesome Display Current Time Web-Page Using HTML, CSS & JavaScript

Hello viewsers, now in this blog you’ll learn how to build a Awesome Display Current Time Web-Page Using HTML, CSS & JavaScript. Previously I have shared a Working Analog Clock using HTML CSS & Javascript, today it is time to develop a Working Calculator jQuery that is using.

Create Awesome Display Current Time Web-Page Using HTML, CSS & JavaScript
Create Awesome Display Current Time Web-Page Using HTML, CSS & JavaScript

Awesome Display Current Time Web-Page Using HTML, CSS & JavaScript his can be a Awesome Display Current Time Web-Page as you care able to see when you look at the picture. You will discover a Awesome Display Current Time Web-Page the same as this for a very website that is familiar CodePen, but that program will be very difficult. Then surely problematic for you to comprehend if you're a novice or viewing for quick rule.


When you look at the image, there are many buttons and figures. Whenever you visit that key this is certainly specific the amount of that button may be shown from the screen. If you’re feeling difficult to know very well what i will be saying. You can watch a video that is strong the program (Awesome Display Current Time Web-Page Using HTML, CSS & JavaScript).


Video Tutorial of Awesome Display Current Time Web-Page 

Coming Soon...

You will be hoped by me have actually recognized the styles, principles, and codes. This video clip is believed by me personally will help beginners to understand CSS in depth. If you want to get the source signal of this system (Awesome Display Current Time Web-Page Using HTML, CSS & JavaScript). It is possible to obtain it from the link which can be given just below.


You are able to build this calculator according to demands following a modifications being few. Also, it is possible to renovate this system to just take this Awesome Display Current Time Web-Page into the degree that is next.


Awesome Display Current Time Web-Page Using HTML, CSS & JavaScript [Source Codes]

To create this program (Awesome Display Current Time Web-Page Using HTML, CSS & JavaScript). First, you need to develop two Files one HTML File and a different one is CSS File. After generating these data just paste the rules which can be following your file.

Read Also: Full Awesome 3D Cartoon Push Button Snippet HTML & CSS

First, create an HTML file with all the true name of index.html and paste the given rules in your HTML file. Remember, you’ve to make a file with .html expansion.

<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Current Time Web-Page</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<div class="container">
<img src="box.jpg">
<h1 id="Current-time">12:00:00</h1>
<div class="quotes">
<p>TODAY's QUOTES</p>
<h2>The two most powerful warriors <br> are patience and time.</h2>
</div>
</div>
<script>
let time = document.getElementById("Current-time");

setInterval(() =>{
let d = new Date();
time.innerHTML = d.toLocaleTimeString();
},1000)
</script>
</body>

</html>

Second, create a CSS file aided by the true title of style.css and paste the given codes in your CSS file. Remember, you’ve to produce a file with .css extension.

@import url('https://fonts.googleapis.com/css2?family=Combo&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Combo', cursive;
}
.container{
width: 100%;
height: 100vh;
background: #d90000;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.container img{
width: 65%;
}
.container h1{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
font-size: 90px;
font-weight: 600;
letter-spacing: 6px;
}
.quotes{
width: 100%;
position: absolute;
text-align: center;
bottom: 15%;
color: #fff;
font-size: 20px;
font-weight: 500;
}
.quotes h2{
font-size: 45px;
margin-top: 10px;
font-weight: 500;
}
.container h1:hover{
cursor: pointer;
color: #d90000;
}

That’s all, so now you’ve effectively created a Awesome Display Current Time Web-Page Using HTML, CSS & JavaScript. Then kindly comment down or e mail us through the contact web page should your code doesn't work or you’ve faced any error/problem.


Post a Comment

Previous Post Next Post

Follow Me Google News