Showing posts with label Web Development. Show all posts
Showing posts with label Web Development. Show all posts

Create Image Slider in HTML CSS

 In this article, We will share tutorial How to Create Image Slider in HTML CSS. Here, we will create Image Slider using only HTML and CSS Also we will explain all you code of Our Image Slider. Here you will not learn to create a single image slider. Rather, You will learn to create many types of Image Slider.


Create Image Slider in HTML CSS 

After reading this article completely, you will be able to create a good Image Slider. Therefore, you should read the entire article. Learn how to make Image Slider. Also, the source code of the image slider will be copied from here and can be used anywhere. 


Image Slider Using Only HTML & CSS

HTML Code 

1
2
3
4
5
6
7
8
<div class="slider">
  <div class="slideshow-container slide">
    <img src="free1.png"/>
    
    <img src="free2.png"/>
    <img src="free3.png"/>
  </div>
</div>

CSS Code 


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<style>
body{padding: 10px;}


/*slideshow styles*/

.slider {
  width: 625px;
  margin: 0 auto;
  overflow: hidden;
  border: solid 1px white;
}

.slideshow-container {
  width: 2500px;
  font-size: 0;
  transition: 1s ease;
  height: 225px;
}

.slideshow-container:hover {
  animation-play-state: paused;
}

img, .text-container {
  width: 625px;
  height: auto;
  display: inline-block;
  font-size: 16px;
  text-align: center;
}

.text-container {
  height: 225px;
  position: relative;
}


p {
  position: relative;
  top: -45%;
  padding: 5px;
}

.slide {
  animation: slide 20s ease infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  
  12.5% {
    transform: translateX(0%);
  }
  
  25% {
    transform: translateX(-25%);
  }
  
  37.5% {
    transform: translateX(-25%);
  }
  
  50% {
    transform: translateX(-50%);
  }
  
  100% {
    transform: translateX(0);
  }
  
  
</style>

Top 20 Best Javascript Projects

Top 20 Best Javascript Projects | Best Javascript Project - Learn a Programming Language best way is through projects. Because When We learn a programming language getting familiar basics. But, When we create projects and play with code, Then we get to know to program very deeply. So, In this article, We will be exploring some interesting Javascript projects. With the help of these projects, beginners can test and increase Javascript knowledge. Here we will share the Top 20 Best Javascript Projects.



Top 20 Best Javascript Project

The list of  Top 20 Best Javascript projects is best for Javascript beginners also these projects can Expert. So, they boost your knowledge. 

1. Quiz App 

Javascript Quiz project is one of the best projects for learn new Javascript program. 

2. Age Calculator 

Age calculator is based on a calculator project that solve age calculator mathematic problem. Thus Age calculator is problem-solving project. Accepting this problem-solving challenge is very important for you. 

3. Password Generator

Password Generator tool is important for websites and also security. Password Generator project for you is to generate a random password that may consist of alphabets, numbers, and special characters. 

4. Login Authentication 

Create a login Authentication bar (When user enter email address and password ) can track. 

5. Password Matching 

When in Website is two boxes password and confirm password. Then, Javascript program can verify matching password or nonmatching password. 

6. Word Counter 

Create Wordcounter Simple Javascript Application with HTML. There should a form when these paste text then application can count word and character. 

7. To Do list 

This is Excellent Javascript preoject this will completed with HTML,CSS, Javascript. This application should have a store in the Data Browser. When user to do list cut web application and when it comes back later, its data should not be deleted.

8. Whether Analyze 


9. Text Analyzer 

10. Ludo Game 

11.Tip Calculator 

12. Countdown Timer 

13. HTML Text Editor 

14. CSS Generator Tool 

15. Image Converter 

16. Image Slider 

17. Javascript Tab

18. Calander 

19. Audio & Video Player 

20.  Face Detection App 


Make Your Own Professional Website Using Html & CSS, Javascript

 MAKE YOUR OWN PROFESSIONAL WEBSITE USING HTML & CSS, Javascript 




<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">

<title>Ease</title>
</head>

<style>

body{
font-family: 'Montserrat', sans-serif;
font-size: 15px;
padding: 0;
margin: 0;
}

.container{
margin: auto;
}

header{
color: #ffffff;
background-color: #353030;
padding-top: 5px;
min-height: 70px;
border-bottom: #e8491d 3px solid;
}

header h1{
letter-spacing: 10px;
padding-left: 70px;
}

header a{
color: #ffffff;
text-decoration: none;
text-transform: uppercase;
}

header li{
font-weight: bold;
float: left;
display: inline;
padding: 0 20px 0 20px;
}

header #branding{
float: left;
}

header nav{
float: right;
padding-top: 10px;
}

header a:hover{
color: #e8491d;
font-weight: bold;
transition: 0.4s ease;
}

#showcase{
padding-top: 5px;
height: 630px;
color: #fff;
background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('laptop.jpg');
}

#showcase h1{
color: #e8491d;
font-size: 55px;
margin-top: 160px;
text-align: center;
}

.button{
position: absolute;
left: 30%;
}

.btn{
text-transform: uppercase;
padding: 10px 30px;
color: #fff;
text-decoration: none;
transition: 1s ease;
border: 1px solid #fff;
}

.btn:hover{
background-color: #fff;
color: #000;
}

</style>

<body>
<header>
      <div class="container">
       <div id="branding">
       <h1>Ease</h1>
       </div>
       <nav>
       <ul>
       <li><a href="index.html">Home</a></li>
         <li><a href="about.html">About</a></li>
            <li><a href="contact.html">Contact</a></li>
         <li><a href="privacy.html">Privacy</a></li>
        </ul>
        </nav>
        </div>
</header>

<section id="showcase">
<div class="container">
<h1>Become Professional</h1>
</div>

<div class="button">
<a href="#" class="btn">Visit Our YouTube</a>
<a href="#" class="btn">Visit Our Website</a>
</div>

</section>

</body>

</html>

Create Your own Professional Website Easier

 

PROFESSIONAL WEBSITE BY EASIER WAY

As you know about websites, it can be made by coding. But you also listen that you can create websites by Wordpress, Wix etc. Here is more easy step to make a professional website without coding or using other hard ways. You can create professional website by Blogger. When you create a blog by Blogger, you can change it to professional website by adding other templates than Blogger and add a Domain on your blog.



Just go to the link above and signin you Google account with blogger. It will signin with Google because it is a Google product. After that create a blog named it and set a Domain name. Now click on Theme and click on Back-up/Restore and change this template by yours. Save it, click view blog to see your blog. Now you need to set a top level domain name like, .com, .net, .in etc just buy it from Godaddy or freenom or some other sites etc. Now publish your first post before it set your social widgets and make important pages like Privacy Policies, Contact us, About us etc.

Publish almost 20 to 30 posts and generate huge traffic and run your professional website. Now if you want to make money by publishing ads then click on Earning and sign-up for Google Adsense and make money.


 You can also make money by publishing ads of different ads sites such as RevenueHits, Propeller Ads, Media.net, Adsnow, etc.

Work with Patience, Honesty and Hard to get success