-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (73 loc) · 2.79 KB
/
index.html
File metadata and controls
85 lines (73 loc) · 2.79 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
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yaan</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<header>
<div class="hero-section">
<h1>Shreyas Prajapati's Portfolio</h1>
<p>I am Coder , Game Developer and Graphics Designer</p>
</div>
</header>
<!-- Projects Section -->
<section id="projects">
<h2>Projects</h2>
<div class="projects-container">
<div class="project">
<img src="project1.jpg" alt="Project 1">
<h3>Project 1</h3>
<p>My First Game made on Unity A Block Puzzle Game .</p>
</div>
<div class="project">
<img src="project2.jpg" alt="Project 2">
<h3>Project 2</h3>
<p>Half Cooked Project of a FPS Game .</p>
</div>
<!-- Add more projects as needed -->
</div>
</section>
<!-- Video Showcase Section -->
<section id="video-showcase">
<h2>Video Showcase</h2>
<video width="600" controls>
<source src="your-video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</section>
<!-- YouTube Video Section -->
<section id="youtube-video">
<h2>YouTube Videos</h2>
<iframe width="600" height="400" src="https://www.youtube.com/embed/CzRQ9mnmh44?si=h5SasJtZKGzkpSh4"
frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</section>
<section>
<h2>Contact Me</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send Message</button>
</form>
<div class="social-media">
<a href="https://www.linkedin.com/in/shreyas-prajapati-116231325/" target="_blank">
<img src="https://cdn-icons-png.flaticon.com/512/174/174857.png" alt="LinkedIn">
</a>
<a href="https://github.com/PresenceOP-Coder" target="_blank">
<img src="https://cdn-icons-png.flaticon.com/512/25/25231.png" alt="GitHub">
</a>
</div>
</section>
<!-- Footer -->
<footer>
<p>Thanks for Visiting !</p>
</footer>
</body>
</html>