Skip to content

Created my own portfolio website using HTML,CSS and JavaScript. Doing continuous improvement and updates in it.

Notifications You must be signed in to change notification settings

Yogesh-160/Portfolio_Yogesh_Jha

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Portfolio_Yogesh_Jha

Created my own portfolio project using HTML, CSS and Javascript. Connected the contact form using Google Excel sheet.
Also, This portolio is live and hosted through gitHub.

Here is the code through which I connected my contact me form using excel:👇🏻

const scriptURL = 'Your google sheet link'
const form = document.forms['submit-to-google-sheet']
const msg = document.getElementById("msg")
form.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL, { method: 'POST', body: new FormData(form)})
.then(response => {
msg.innerHTML = "Message Sent successfully"
setTimeout(function(){
msg.innerHTML = ""
},5000)
form.reset()
})
.catch(error => console.error('Error!', error.message))
})

If you want detail how to connect it through this code, just message me through linkedin or through my contact me form given inside the portfolio.

Sample of UI (Portfolio) given below👇🏻

Screenshot (541)

Link to access my portfolio 👉🏻 https://yogesh-160.github.io/Portfolio_Yogesh_Jha/

Connect with me on Linkedin if you have any query regarding my project.
OR
Simply fill the contact me form which is given inside my portfolio project.

Give start if you love my hardwork ⭐️

About

Created my own portfolio website using HTML,CSS and JavaScript. Doing continuous improvement and updates in it.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published