Ellard Garcia

1620960324

Landing page Design With Animation Using HTML CSS & JavaScript

In this video show you how to Design a Landing Page with Animation using HTML CSS & JavaScript

Source Code: https://drive.google.com/folderview?i…

Subscribe: https://www.youtube.com/channel/UCkzN9cEIrlWRRedUHR59Y7Q/featured

#html #css #javascript

What is GEEK

Buddha Community

Landing page Design With Animation Using HTML CSS & JavaScript

How To Make a Fully Responsive Landing Page Using HTML, CSS (SCSS), and JavaScript

In this tutorial, we are going to build a fully responsive Gym Landing page using HTML, CSS (SCSS) and JavaScript. We’ll use all sort of CSS tricks and also do a little bit of usability and accessibility.

I hope that you enjoy the tutorial. It would be awesome if you like the video, comment below and consider subscribing.

Source Files: https://bit.ly/3zWOhZ4

Tips:
Tips are never expected but deeply appreciated if you are able and will go towards my channel and likely food. Please only tip if you are able, I’m just happy you’re here!
Buy Me A Beer: https://www.paypal.com/donate/?hosted_button_id=YUH7JRDUN5QEY

Chapters:
0:00 Introduction:
0:39 Project Setup
6:02 HTML5 & Reset Styles
18:10 Skip To Content Button
25:17 Header & Navbar
01:12:23 Hero
01:40:16 Categories
01:57:18 Training Options
02:09:29 Get Started Today
02:20:54 We Will Help You
02:23:01 Footer
02:23:27 Ending

CONNECT with RaddyTheBrand
Website: https://www.raddy.co.uk
GitHub: https://www.github.com/RaddyTheBrand
Instagram: https://www.instagram.com/RaddyTheBrand
Twitter: https://www.twitter.com/RaddyTheBrand
Newsletter: https://www.raddy.co.uk/newsletter

#javascript #css #html #landing page #scss #fully responsive landing page

Nandini roy

Nandini roy

1604751378

How To Make Landing Page Using HTML, CSS, and JavaScript

Learning how to create a professional and responsive landing page requires high quality code and the right guide. Using high quality coding you can easily create professional and responsive landing pages. This page is primarily created using HTML, CSS and JavaScript programming languages. Structures or designs are created using HTML programming language, responsive to CSS programming code. JavaScript programming code basically makes this page animated and professional. In this article I will guide you completely on how to create a professional and responsive landing page. Before learning how to create a landing page, you need to know a few things very well. First of all, you can arrange the landing page for all devices such as computers, laptops, mobiles, etc. Below are all the code needed to create this landing page. You can download all the code needed to create this landing page by clicking on the download button above. You can also watch the live demo of this landing page by clicking on the demo button.
This is image title

Demo: Click Here

Download Code: Click Here

Some information about this landing page

  • Only general HTML, CSS and JavaScript programming languages ​​have been used to create this landing page.

  • The background of this page has been completely blackened and the text has been whitewashed. You can change the color as you wish. You can easily do this if you want to whiten the background and blacken the white text. I have shown you below how to do it.

  • Everything that is on a website is kept in it like menu bar, login form, protocol design, footer menu, footer credit etc. Everything has a landing page.

  • There is a place to subscribe on the homepage of this template, which means any user can subscribe to you using email id and password etc.

  • There is a fixed menu bar at the top and animations have been added.

  • Here’s the author’s table below. This means that you can give an information about those who upload content to your website here.

  • There is also a footer menu below. There is space to add pages like About Us, Contact Us, Privacy Policy etc. You can also add everything you have on your social media account here.

  • Below is the footer credit, which means you can understand who created this website. I currently have my own name here. You can add your own name here if you want. I have shown below all the details of how to do it.

  • Again there is a button below where you can go to the very first of the website by clicking.

All in all this is a great professional web site template that will help you learn. Hope you like this landing page. If you want to learn how to make it, follow the steps below.

Demo and Download Code

Here I will show you how I created this Responsive Landing Page. You can easily find out how to increase it from the following methods.

Body
This is a CSS code that has been used to build this structure.

body {
  margin: 0;
  padding: 0 4px;
  height: 100vh;
  overflow: hidden;
  line-height: 1.5;
  font-family: 'Inconsolata', sans-serif;
  font-size: 62.5%;
  color: #fff;
  background-color: #1d1e22;
}

Top menu bar
The menu bar shown on this website is a fixed menu bar. The following codes have been used to create this menu bar.

header ul {
 list-style-type: none;
 padding: 0;
 margin: 1em 0;
 display: flex;
 width: 100%;
 justify-content: flex-end;
 align-items: center;
}
header ul li {
 position: relative;
 margin: 0 1em;
 transition: all 0.2s linear;
}/*ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);*/
header ul li a {
 font-family: 'Montserrat', sans-serif;
 font-weight: 500;
 color: #fff;
}
header ul li::before {
 position: absolute;
 content: '';
 top: calc(100% + 4px);
 left: 0;
 width: 20px;
 height: 2px;
 /*ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);*/
 background-color: #fff;
 transform-origin: 0 100%;
 transform: rotate(-5deg);
 transition: all 0.2s ease-out;
}
header ul li:hover::before {
 width: 100%;
 background-color: #df2359;
}

Subscribe form
The subscription form on the homepage of this website is basically a follow form. Where your users can follow you. The following programs are used to make it.

       <form><img src="https://s.cdpn.io/profiles/user/2727382/80.jpg?1545923020"/>
         <input type="text" placeholder="Email:"/>
         <input type="text" placeholder="Password:"/><a class="button" href="#bottom">Follow me</a>
       </form>

Footer menu
Footer menus are basically a place to add some notable pages to your website. I have used the following programming code to make it.


         <li><a href="https://dribbble.com/andrejsharapov" target="blank">Dribbble</a></li>
         <li><a href="https://codepen.io/andrejsharapov" target="blank">CodePen</a></li>
         <li><a href="https://twitter.com/andrejsharapov" target="blank">Twitter</a></li>
         <li><a href="https://www.behance.net/andrejsharapov" target="blank">Behance</a></li>

Footer Credit
You can use the following codes to create footer credits. Here I will show you how to change the name of this credit. Basically I used my own name here you can add your own name.

footer {
  padding-bottom: 1em;
  width: 100%;
  min-height: 35vh;
  flex-direction: column;
  justify-content: space-around;
  background-color: #191a1d;
}/*ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);*/
footer h3 {
  position: relative;
  font-family: 'Montserrat', sans-serif;
}
footer h3::before {
  position: absolute;
  content: '';
  top: calc(100% + 4px);
  left: 0;
  width: 20px;
  height: 2px;
  
  background-color: #df2359;
  transform-origin: 0 100%;
  transform: rotate(-5deg);
  transition: all 0.2s ease-out;
}
footer h5 {
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
footer h5.follow {
  color: #df2359;
}
footer ul {
  list-style-type: none;
  margin: 0;
 /*ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);*/
  padding: 0;
}
footer ul li {
  line-height: 1.5;
  transition: transform 200ms ease-in;
  will-change: transform;
}
footer ul li:hover {
  transform: translateX(5px);
}

Make the website page responsive
A special type of CSS code has been used to make this landing page responsive. Those codes make the landing page responsive and professional. As a result, it can adapt itself beautifully to any device. The following programming codes have been used to make it responsive.

@media (max-width: 991px) {
 .blur {
   display: none;
 } 
 .content {
   text-align: center;
 }
 .content h1::before {
   display: none;
 }
}
@-moz-keyframes hearts {
 50% {
   transform: scale(1.4);
 }
}/*ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);*/
@-webkit-keyframes hearts {
 50% {
   transform: scale(1.4);
 }
}
@-o-keyframes hearts {
 50% {
   transform: scale(1.4);
 }
}
@keyframes hearts {
 50% {
   transform: scale(1.4);
 } 
}
@-moz-keyframes dash {
 90% {
   stroke-dashoffset: 0;
 }
 100% {
   stroke-dashoffset: 0;
   fill: #fff;
 }
}
@-webkit-keyframes dash {
 90% {
   stroke-dashoffset: 0;
 }/*ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);*/
 100% {
   stroke-dashoffset: 0;
   fill: #fff;
 }
}
@-o-keyframes dash {
 90% {
   stroke-dashoffset: 0;
 }
 100% {
   stroke-dashoffset: 0;
   fill: #fff;
 }
} 
@keyframes dash {
 90% {
   stroke-dashoffset: 0;
 }
 100% {
   stroke-dashoffset: 0;
   fill: #fff;
 }
}
/*ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);ctx.fillText(deathMeans, cnv.width/2, cnv.height/2-30);*/

All the HTML, CSS and JavaScript required to create this landing page are given above. You can download all the programming codes by clicking on the download button there.

Hopefully from this article you have learned how to create a professional and responsive landing page using only common HTML, CSS and JavaScript programming languages. If you encounter any problems while creating this landing page, please let me know in the comments. I will do my best to make this website. If you like this article, please like this article and comment your opinion.

https://www.backlinkn.com/2020/11/landing-page-tutorial-make-webpage.html

#landing-page #website-page #html #css #javascript

anita maity

anita maity

1618667723

Sidebar Menu Using Only HTML and CSS | Side Navigation Bar

how to create a Sidebar Menu using HTML and CSS only. Previously I have shared a Responsive Navigation Menu Bar using HTML & CSS only, now it’s time to create a Side Navigation Menu Bar that slides from the left or right side.

Demo

#sidebar menu using html css #side navigation menu html css #css side navigation menu bar #,pure css sidebar menu #side menu bar html css #side menu bar using html css

wp codevo

wp codevo

1608041977

Responsive Ecommerce Website Using HTML CSS JAVASCRIPT

https://youtu.be/PJfx8JlK5oo

#html and css ecommerce website design #ecommerce website design #e-commerce #create website using html and css #ecommerce shopping website #landing page design

anita maity

anita maity

1621077133

Responsive Footer Design using HTML, CSS & Bootstrap

Hello Readers, welcome to my other blog, today in this blog I’m going to create a Responsive Footer by using HTML & CSS only. Earlier I have shared How to create a Responsive Navigation Menu and now it’s time to create a footer section.

As you can see on the image which is given on the webpage. There are various important topics there like About us, Our services and subscribes, some social media icons, and a contact section for easy connection. I want to tell you that it is fully responsive. Responsive means this program is fit in all screen devices like tablet, small screen laptop, or mobile devices.

Live Demo


#responsive footer html css template #footer design in html #simple footer html css code #simple responsive footer codepen #responsive footer code in html and css #responsive footer html css codepen