Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update contact #11

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 76 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Welcome to Portfolio

### 1.How to Contribute
***
**- Fork the Repository**

**- Clone the Forked repository**

</br>

### 2.Using Git to Clone:
***
```
git clone https://github.com/URL-HERE/
```
*Add Scripts and necessary changes*

</br>

### 3.Using Git:
***
*Initialize git in the repo and adding contents*
```
git init (Can be skipped)
git add .
```
*Commit the changes with commit messages*
```
git commit -m "MENTION-YOUR-COMMITS"
```
</br>

### 4.Push your branch to Forked Repo:
***
```
git remote add origin URL-HERE
git push -u origin master
```
</br>

### 5.Raise a Pull Request to the Parent Repository through Github Website

</br>

### 6.Syncing a fork:
***
*Fetch the changes made in upstream*
```
git fetch UPSTREAM/MASTER
```
*Merge the changes from upstream/master into your local master branch*
```
git merge UPSTREAM/MASTER
```
*Push to your branch*
```
git push
```
</br>


### 7.⭐ Please dont forget to star this repository and contribute to it ⭐
***
<p align="center"><img src="https://media.giphy.com/media/2UpzC3iPenf44/source.gif" width=40%></p>

</br>

### 8.My Contacts
***
<img src="https://www.flaticon.com/svg/static/icons/svg/174/174857.svg" width=3%> [Linkedin](https://www.linkedin.com/in/gaurav-gupta-ab8b7a175/)

<img src="https://www.flaticon.com/svg/static/icons/svg/174/174855.svg" width=3%> [Instagram](https://www.instagram.com/programmergaurav/)

<img src="https://www.flaticon.com/svg/static/icons/svg/270/270798.svg" width=3%> [GitHub](https://github.com/programmergaurav)

<img src="https://www.flaticon.com/svg/static/icons/svg/733/733547.svg" width=3%> [Facebook](https://www.facebook.com/profile.php?id=100026746380141)
4 changes: 4 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ <h1 class="">ProgrammerGaurav</h1>
<label for="name">Name</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" class="form-control" id="subject" name="subject" required>
</div>
<div class="form-group">
<label for="Messege">Messege</label>
<textarea type="email" class="form-control" id="messege" name="messege"
Expand Down
1 change: 1 addition & 0 deletions js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ var frm = $('#contact');
frm.submit(function (e) {
e.preventDefault();
let name = document.getElementById("name").value;
let subject = document.getElementById("subject").value;
let messege = document.getElementById("messege").value;
var win = window.open(`https://wa.me/+918450996596?text=Hi%20I%27m%20${name},%20${messege}`, '_blank');
});
Expand Down