-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjob-application.html
More file actions
101 lines (95 loc) · 4.43 KB
/
job-application.html
File metadata and controls
101 lines (95 loc) · 4.43 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Application | Film Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="container">
<div class="nav-brand">
<h1>Om Kasar - Production Assistant Portfolio</h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="job-application.html" class="active">Job Application & Letters</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
<!-- Job Application Section -->
<section class="job-application page-section">
<div class="container">
<h2 class="section-title">Job Application Materials</h2>
<p class="section-intro">Professional application documents for your review</p>
<div class="application-grid">
<!-- Job Application -->
<div class="application-card application-card-1">
<h3>Job Application</h3>
<p>Application form with my qualifications and previous experience</p>
<div class="application-embed">
<iframe src="https://drive.google.com/file/d/1Dx95ShLiZaz8lyo3IGureZGUS6oXUGoU/preview"
width="100%"
height="600"
frameborder="0">
</iframe>
</div>
<div class="application-actions">
<a href="#" class="btn btn-secondary" download>Download Application</a>
<a href="https://drive.google.com/file/d/1Dx95ShLiZaz8lyo3IGureZGUS6oXUGoU/preview" target="_blank" class="btn btn-secondary">View on Google Docs</a>
</div>
</div>
<!-- Cover Letter -->
<div class="application-card application-card-2">
<h3>Cover Letter</h3>
<p>My cover letter highlighting my relevant skills and experience</p>
<div class="application-embed">
<iframe src="https://drive.google.com/file/d/1Me-eqqOk_x_y2WXzmwzLhaqd0pRrdjjM/preview"
width="100%"
height="600"
frameborder="0">
</iframe>
</div>
<div class="application-actions">
<a href="#" class="btn btn-secondary" download>Download Cover Letter</a>
<a href="https://drive.google.com/file/d/1Me-eqqOk_x_y2WXzmwzLhaqd0pRrdjjM/preview" target="_blank" class="btn btn-secondary">View on Google Docs</a>
</div>
</div>
<!-- Thank You Letter -->
<div class="application-card application-card-3">
<h3>Thank You Letter</h3>
<p>My Thank You Letter</p>
<div class="application-embed">
<iframe src="https://drive.google.com/file/d/1T7Ck1XO-jrwbmpc1F1dAyWWUtkx_9C3T/preview"
width="100%"
height="600"
frameborder="0">
</iframe>
</div>
<div class="application-actions">
<a href="#" class="btn btn-secondary" download>Download Thank You Letter</a>
<a href="https://drive.google.com/file/d/1T7Ck1XO-jrwbmpc1F1dAyWWUtkx_9C3T/preview" target="_blank" class="btn btn-secondary">View on Google Docs</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
</div>
</footer>
<script src="script.js"></script>
</body>
</html>