-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (71 loc) · 3.51 KB
/
index.html
File metadata and controls
76 lines (71 loc) · 3.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arun K | Personal Website on AWS</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main>
<section class="hero">
<img src="profile-photo.webp" alt="Your Name" class="profile-photo">
<h1>Hi I am ARUN_</h1>
<p class="tagline">A passionate AWS developer in the making, who is ready to tackle real‑world cloud challenges.</p>
<a href="https://builder.aws.com/community/@iamarun" target="_blank" class="aws-link">My AWS Builder Center Profile</a>
</section>
<section class="fun-facts">
<h3>Fun Facts About Me 🧠✨</h3>
<div class="facts-grid">
<div class="fact-card">
<h4>🔍 Curiosity Overdrive</h4>
<p>Clicking a new AWS service to “just check it out” — 3 hours later, I have a new hobby.</a></p>
</div>
<div class="fact-card">
<h4>☁️ First Cloud Crush</h4>
<p>It was love at first bucket — Amazon S3 stole my heart (and my static website).</p>
</div>
<div class="fact-card">
<h4>🎯 Side Quest Hero</h4>
<p>Currently leveling up with AWS Builder Challenge #2 — because who says learning can't feel like a game.</p>
</div>
</div>
</section>
<section class="aws-journey">
<h3>AWS Builder Challenge #2</h3>
<p>I'm currently working on the "Build a website on the cloud" challenge, learning to deploy websites using AWS S3 and CloudFront. This site is part of my challenge progress!</p>
<a href="https://builder.aws.com/content/31C2WxIDSQive7q2Dv5xNFCmYJj/aws-builder-challenge-2-build-a-website-on-the-cloud?trk=86c76c09-e8f4-4138-badc-604ce7bc5d77&sc_channel=el" target="_blank" class="cta-button">View Challenge Details</a>
</section>
<!-- CONTACT FORM SECTION - Added for user contact functionality -->
<section class="contact-form">
<h3>Get In Touch</h3>
<p>Have a question or want to connect? Send me a message!</p>
<!-- Form message container for success/error messages -->
<div id="form-message" class="form-message" style="display: none;"></div>
<form class="contact-form-container">
<!-- Contact form input fields -->
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<!-- Contact form submit button -->
<button type="submit" class="contact-submit-btn">Send Message</button>
</form>
</section>
<!-- END CONTACT FORM SECTION -->
</main>
<footer>
<p>© 2025 ARUN K. Built with ❤️ on AWS</p>
</footer>
<!-- Contact form JavaScript -->
<script src="script.js"></script>
</body>
</html>