Skip to content

Commit 0e67dc4

Browse files
authored
Update index.html with let's connect code
1 parent 291b61a commit 0e67dc4

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,20 @@ <h2>Contact</h2>
119119
© 2025 Your Name | Built with ❤️ | Hosted on GitHub Pages
120120
</footer>
121121

122+
<section class="section">
123+
<h2>Connect With Me</h2>
124+
<form style="display: grid; gap: 1rem;">
125+
<input type="text" placeholder="Your Name" required style="padding: 10px; border-radius: 5px; border: 1px solid #ccc;">
126+
<input type="email" placeholder="Your Email" required style="padding: 10px; border-radius: 5px; border: 1px solid #ccc;">
127+
<input type="tel" placeholder="Your Phone" style="padding: 10px; border-radius: 5px; border: 1px solid #ccc;">
128+
<input type="text" placeholder="Subject" style="padding: 10px; border-radius: 5px; border: 1px solid #ccc;">
129+
<textarea rows="5" placeholder="Message" required style="padding: 10px; border-radius: 5px; border: 1px solid #ccc; resize: vertical;"></textarea>
130+
<button type="submit" style="padding: 10px; background: #0077b5; color: white; border: none; border-radius: 5px; cursor: pointer;">
131+
Send Message
132+
</button>
133+
</form>
134+
</section>
135+
122136
<script>
123137
const form = document.querySelector('form');
124138
form.addEventListener('submit', async (e) => {

0 commit comments

Comments
 (0)