Thursday 1 October 2020

HTML and CSS   UI design Product Layout 2020


PUMA FOOTBALL PRODUCT UI DESIGN

Hey friends, today we will make a product UI design with pure Html5 and Css3.

Here is the sample video of the design.


DOWNLOAD IMAGES FROM HERE:

HERE IS THE HTML CODE:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <link rel="stylesheet" href="style.css" />
    <title>PUMA</title>
  </head>
  <body>
    <div class="container">
      <div class="hero">
        <div class="logo">
          <img src="./logo.png" alt="" />
        </div>
        <div class="content">
          <div class="model">
            <h2>Puma 083285-02 TPU</h2>
            <ul>
              <li><strong>Brand</strong> Puma</li>
              <li><strong>Size</strong> 5</li>
              <li><strong>Material Type</strong> TPU</li>
              <li><strong>Manufacturer</strong> PUMA</li>
              <li><strong>Color</strong> ULTRA YELLOW-Black-Orange</li>
              <li><strong>Sport</strong> Soccer Ball, Football</li>
            </ul>
          </div>
          <div class="football">
              <img src="./fb.png" alt="">
          </div>
        </div>
        <div class="buy">
            <p>$22</p>
            <button>BUY NOW</button>
        </div>
        <div class="slogan">
            <div class="line"></div>
            <p>
                <strong>UNLEASH</strong>
                YOUR
                <strong>WILD</strong>
                SIDE
            </p>
        </div>
      </div>
    </div>
  </body>
</html>


HERE IS THE CSS CODE:

@import url('https://fonts.googleapis.com/css2?family=Carter+One&family=Julius+Sans+One&display=swap');
:root{
    --font1:'Carter One', cursive;
    --font2:'Julius Sans One', sans-serif;
}
*{
    margin0%;
    padding0%;
    box-sizing: border-box;
    overflow: hidden;
}
.container{
    height100vh;
    width: auto;
    max-width100%;
    max-height100%;
}
.hero{
    background-image: url(./bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height100vh;
    width: auto;
}
.hero .logo{
    position: absolute;
    left20px;
    top10px;  
}
.hero .logo img{
    height70px;
    width: auto; 
}
.content{
    display: flex;
    position: absolute;
    top180px;
    left50px;
    justify-content: center;
    align-items: center;
}
.content .model h2{
    font-size4rem;
    background: -webkit-linear-gradient(#db9621, #000000e1);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   letter-spacing.2rem;
   font-family: var(--font1);
}
.content ul{
    margin-top30px;
    margin-left20px;
}
.content ul li{
    font-size1.5rem;
    font-family: var(--font2);
    color: black;
    line-height3.5rem;
}
.content ul li strong{
    margin-right20px;
}
.football{
    position: relative;
    left60px;
    width500px;
}
.football img{
    height400px;
    transition: all ease 2s;

}
.football img:hover{
    transform: scale(1.05) rotate(360deg);
}
.buy{
    position: relative;
    top650px;
    right250px;
    float: right;
}
.buy p{
    font-size3.6rem;
    font-family: var(--font2);
    color: black;
    text-align: center;
}
.buy button{
    background: linear-gradient(#e9ad0a, #585213e1);
    padding15px 30px;
    margin-top30px;
    color: black;
    font-size1.6rem;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius30px;
}
.buy button:hover{
    background: linear-gradient(#e9ad0a, #000000be);
}
.slogan{
    position: absolute;
    top680px;
    width300px;
    left40px;
    opacity.3;
    display: flex;
}
.slogan p{
    color: white;
    font-size2rem;
    font-family: var(--font2);
}
.slogan strong{
    color: #db9621;
    font-size3rem;
    font-family: var(--font1);
}
.slogan .line{
    background-color: #db9621;
    width5px;
    height110px;
    margin10px 10px;
}

Monday 28 September 2020

How to get source code of any website

HOW TO GET SOURCE CODE OF ANY WEBSITE 


Hello friends, how are  you all. If you are learning web development or you are not understand the layouts of other website.

Today, I will tell you that how you can get the source code of any website on google. You can get the source code and take the layout as you want. So friends first of all we are going to install a software check the procedure below.


DOWNLOAD THE SOFTWARE

1.Go to your google home page and search the software name as HTTrack


2.Now enter in the website by clicking on www.httrack.com. After clicking you can see the interface as below image. On the above menu there is a download button, click on that and move on.


3.After clicking the download menu you can see the versions of this software, now choose the version according to your PC's requirement. And download it.


INSTALLING THE SOFTWARE

After downloading, now we are going to install the software.

1.After clicking on the software's .exe file, this type of window will popup, don't do anything, just click on the next button.


2.Now accept the agreement by clicking on the radio button and click next.



3.Choose the location, where you want to save the file/source code by using browse button and click next 



4.Check the all options and click on the next button



5.You can see the install button click on it to install the software



6.Now check the Launch WinHTTrack website copier's option and click on finish




GET THE SOURCE CODE

1.Once you launch the HTTrack software, you will see the interface like in below image you just click on next button and move on.





2.Now enter the name of you project, and select the category of which you want to extract the files, in my case I want to extract the html file of the website. Now click on next button.



3.You can see the Add URL button click on it to add your URL. 



4.After clicking on the Add URL button a popup window will appear on your screen, now only add the URL of the website, of which you want to get the source code and click OK.




5.After adding the URL click on the next button.


6.This page is not important just click on Finish and move on.

7.Your process has been started it will take few minutes, don't skip anything. It depends on  the files if you have the large file it will take more time to download and adjusting the source code.


8.When download complete you can see this type of window, do nothing and click on the Finish button.



FIND THE CODE

Go to your Local Disk C and search your folder. Once you find the folder, open it.

You can see the many files and folder, now i'm going to open the 2nd folder.

As you can see i have the all html css javascript files and also i have the all assets of the website now lets open one of this file in our code editor 

CHECK THE CODE

So friends finally, did you see that OMG what is this, we can see all the code of that website, now you can change the code or get the idea from this code or anything that you want you can do from it. 




So friends, stay tuned with my website for more informative and interesting material.


Monday 4 May 2020

10 Beautiful HTML CSS Sign up & Login Form Templates


Beautiful  css3 sign up & Login form Layouts are necessary for website. Learn more about the  css3 and HTML5 templates. In this article we will provide you some examples of css3 html5  form layouts, these templates are totally free for download and you can feel free to edit these templates with your own choice. It will help you to save your time, when you are building a website.
Various types of registration forms that you add in your website to allow user to connect with your community and having permissions to download and get more features of your website. 

1. Sign Up Form Payment with Details


See the Pen Sign Up Form by usama abbasi (@saamiiabbasi007) on CodePen.


2. Interactive Sign Up Form


See the Pen Interactive Sign Up Form by usama abbasi (@saamiiabbasi007) on CodePen.


3. Material design sign up form


See the Pen Material design sign up form by usama abbasi (@saamiiabbasi007) on CodePen.


4. Pogorammer sign up form


See the Pen Spectre sign up form by usama abbasi (@saamiiabbasi007) on CodePen.


5. Material Design Signup Interaction




6. Sign Up Form using Material Design on Angular Material


See the Pen Material Design Sign Up Form by usama abbasi (@saamiiabbasi007) on CodePen.


7. Login Form using Material Design


See the Pen Material Design Login Form by usama abbasi (@saamiiabbasi007) on CodePen.


8. HTML5 Sign Up Form


See the Pen Sign Up by usama abbasi (@saamiiabbasi007) on CodePen.


9. Simple and light sign up form


See the Pen Simple and light sign up form by usama abbasi (@saamiiabbasi007) on CodePen.


10. CSS3 Sign Up for Free


See the Pen Sign-Up/Login Form by usama abbasi (@saamiiabbasi007) on CodePen.

Saturday 2 May 2020

5 Open Source UI Layouts Calendar with Css


1. Calendar Widget:


See the  code on CodePen.


2. Colorful UI Calendar:


See the code on CodePen.


3. Flat Fullscreen Calendar:


See the Pen Full Screen Flat Calendar by usama abbasi (@saamiiabbasi007) on CodePen.


4. Flip Calendar:


See the Pen Calendar Flip Animation by usama abbasi (@saamiiabbasi007) on CodePen.


5. Dark UI Responsive Calendar:


See the Pen Responsive Calendar by usama abbasi (@saamiiabbasi007) on CodePen.

Saturday 25 April 2020

4 Amazing CSS Animated Buttons with hover effects

:CSS3 Buttons Effects:



1. Stylish Animated CSS Buttons for Bloggers

See the on CodePen.
This set of stylish animated CSS buttons are really amazing. They offers a great right to left color swip effect and vice versa.Also having effects from top to bottom, having solid outline on the border.


2. Animated CSS Buttons

See the  on CodePen.

This set of buttons have a great sensible use on your website. On hover, these buttons are fill the colors from every angle. We make a lot of buttons with different colors and different effects, employ swipe effects, pattern fills, and more.



3. Simple CSS Button Hover Effects

See the  on CodePen.
Below another set of highly creative and understated animated buttons that manage the 3 different color with background and 3 amazing effects. Some of the effects having border spreading out when you hover on it. On hover, some effects are display along itself moving in all axis.

4. 3D Flip Button

See the on CodePen.

Unlike all the above buttons and take a look on this button this is the one of the most using buttons for submitting any thing on website. Once click on the button, the bottom side will roll up and displays a amazing text and different color.

Monday 20 April 2020

Best 50+ C and C++ Projects For Beginners

Best 50+ C and C++ Projects For Beginners

Projects that you searched are available here. The best 50+ C++/C projects with the source, you can download them. Mini Projects like mini games, simple software, management systems and Applications.
Most of the students take interest C and C++ language, and they becomes a good programmer as well and write programs of array, pointer, functions, data structure, loops, Algorithms, file handling and etc. But in the terminology to make mini games and projects its may be difficult.

These C and C++ projects are posted in our site. So you can easily download. Our aim is to teach you that how to starting your career in programming field. We gives you ideas and improve your programming skills i C and C++. Here in our site you can easily get simple and short projects, long and complicated projects as well. for other language projects you can visit our Site. 

C Projects:

From these C mini projects, mini games, small applications and software. most of the projects including arrays, functions, classes, file handling, data structure and loops. try to understand the source code that we provided you below. And learn how we can add, search, view, modify and delete data by using file, so you can create similar projects.
We provided you projects with source code ,these are in uncompressed version, so you can easily understand the multiples lines of code.You can download projects by clicking on your recommended projects.

C++ Projects:

Just like the C projects, the C++ projects enlisted below are mini projects – small games and applications. They are good for starters who are looking for reference projects to create a C++ mini-project of their own.

DOWNLOAD

[/sociallocker]
Note: The above projects are  non-debugged and unchecked. You must find and remove the errors, if you are beginner in a making project, it gives you power to understand the code. Find the error and fix it.
Compile and make your project in the c and c++ language editor Code::Blocks IDE, We made these projects in  Code::Blocks IDE, so if you compile your project in Dev C++, Turbo C/C++ and etc, you may faced some error problems.
Note: If you are interesting in making projects, and you have developed a project and you want to share it with our Site. So, we are the right choice you can send your project's source code and a brief abstract at abbassig2@gmail.com, we'll publish your project in our site with your name. Also, if you have a project request, you can mail us or give your queries in the comments below.

Saturday 11 April 2020

JAVASCRIPT PROJECTS





JAVASCRIPT MINI PROJECTS:

Welcome, to Javascript Project in Urdu/Hindi. JavaScript Mini Project Student Grade Calculator in JavaScript in Urdu/Hindi with Code.

Believe me all this money will be used to make more quality videos and to make my channel grow. So that I can always provide you awesome free videos :)


SOURCE-CODE:

Click Here: contact us. in inbox










Monday 6 April 2020

How to make Login form by using neumorphism Css

Login Form with Neumorphism Css:



For the perfect and beautiful view is gained by neumorphism. In Css their are many type of options which you can select and make your web layout beautiful. So here we use neumorphism and maked our login form prefectly and creative.

HTML CODE:

!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="login">
    <div class="container">
<div class="login-sec">
<div class="text">
<h2>Welcome</h2>
</div>
<div class="form">
<input type="text" name="Email" placeholder="Email" id=""><br>
<input type="text" name="password" placeholder="Password" id=""><br>
<button type="submit" class="btn">LOGIN</button>
<br>
<p class="para">
Don't have an account? <a href="#">Sign Up</a>
</p>
</div>
</div>
</div>
</section>
</body>
</html>

We used above HTML code for making the simple diagram of our form. We used some div's like: Container, login-sec, text and form.
In the text div we gave it a heading called welcome then in the form div we used 2 input type and 1 button for submission. Then we took a paragraph by using its class para and at the last we used a anchor tag which make the Sign Up button click able.


Font:

Here is the font that we used for our login-form, its name is Baloo Thambi:

@import url('https://fonts.googleapis.com/css2?family=Baloo+Thambi+2&display=swap');

CSS CODE:

In our Css code we used some padding and margins and we used some background color and neumorphism property, that give the border's up and down shadow which looks really amazing, then we gives the color and border of button.

@import url('https://fonts.googleapis.com/css2?family=Baloo+Thambi+2&display=swap');
body{
padding: 0%;
margin: 0%;
font-family: 'Baloo Thambi 2', cursive
}
.login{
background-color: #dae1eb;
}
.container{
background-color:#dddddd;
height: 100vh;
width: 100%;
align-content: center;
justify-content: center;
display: flex;

}
.login-sec{
background-color:#dddddd;
border-radius: 15px;
width:200px;
height: 340px;
text-align: center;
transform: translateY(50%);
padding: 30px;
box-shadow: 2px 2px 1rem rgba(0, 0,0,.4) ,
  4px -4px 10px rgb(255, 255,255);
}
.text h2{
color: rgba(14, 15, 14, 0.897);
padding-bottom: 15px;
font-size: 28px;
}
.form input{
background-color: transparent;
outline: none;
border: none;
border-bottom: 1px solid gray;
width: 90%;
padding-bottom: 10px;
margin-bottom: 30px;
font-size: 13px;
letter-spacing: 0.1rem;
}
.form .btn{
outline: none;
background-color: rgb(64, 175, 64);
padding: 13px 70px 13px 70px;
font-size: 16px;
color: white;
font-weight: 550;
border-radius: 30px;
border: 3px solid rgba(255, 255, 255);
}
.form .btn:hover{
cursor: pointer;
background-color: rgb(64, 175, 9);
}
.form .para{
font-size: 13px;
margin-top: 25px;
}
.form .para a{
font-size: 16px;
text-decoration: none;
font-weight: bold;
color: black;
}