Posts

Showing posts from August, 2024

How To Make Working Email Subscription Form With Google Sheets Using HTML CSS & JavaScript

Image
  https://github.com/jamiewilson/form-to-google-sheets https://docs.google.com/spreadsheets/u/0/ create index.html file <! 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 " > < link rel = " stylesheet " href = " https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css " > </ head > < body > < div class = " container " > < div class = " content " > < span > Coming Soon </ span > < h1 > Our Brand new website < br /> is on it's way </ h1 > < span > Subscribe for more details </ span ...

3D animated TIlt card design

 3D animated TIlt card design It seems like you're building a blog post and providing various code snippets and tutorial content. Below is the refined and improved version of your HTML example, along with comments added to the code for clarity. This code is specifically for creating 3D animated tilt cards using Tilt.js and CSS . 3D Tilt Card Design Example (HTML, CSS, and JS) index.html <! DOCTYPE html > < html lang = " en " > < head >   < meta charset = " UTF-8 " >   < meta name = " viewport " content = " width=device-width, initial-scale=1.0 " >   < title >Tilt Animation Cards Design</ title >   <!-- Link to the external CSS file for styling -->   < link rel = " stylesheet " href = " style.css " > </ head > < body >   <!-- Container holding the tilt animation cards -->   < div class = " container " >     <!-- Each card ...

3D animation background using Vanta.js

3D animation background using Vanta.js It looks like you're trying to integrate a Vanta.js animation effect (specifically, the birds effect) into your web page using Three.js and Vanta.js libraries. The code you've shared is mostly correct but needs a few improvements for proper setup. Below is the fixed and improved version of your code, including a better structure and explanation: Complete Code for Vanta.js Bird Animation index.html <! DOCTYPE html > < html lang = " en " > < head >     < meta charset = " UTF-8 " >     < meta name = " viewport " content = " width=device-width, initial-scale=1.0 " >     < title >Vanta.js Bird Animation</ title >     < link rel = " stylesheet " href = " style.css " >     < style >         /* Make sure the body and main container cover the full page */         body , html {       ...

C++ tutorial basic to advance with notes

 c++ is a high level programming language developed bjerne stroushup in year 1979 at bell lab.c++ is object oriented programming language. c++ case-sensitive language. in earlier the name of c++ was "c with classes" c++ is a protable programming language. syntax of c++ program: #include<iostream>  // header file using namespace std; return type main(){ // main program start from here    //code     } //end of main program input device is used to give a command to the computer. cin for input. cout for output # is a preprocessor directive. include is a statement  header file: the file that tell compiler how to call some functionality without knowing how the functionality actually work is called header file. * compilation and execution process of c++ program: first.cpp      preprocessor   //link header file      compiler      object file      linker      executa...