-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
71 lines (68 loc) · 3.31 KB
/
about.html
File metadata and controls
71 lines (68 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me | 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" class="active">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">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>
<!-- About Me Section -->
<section class="about page-section">
<div class="container">
<h2 class="section-title">About Me</h2>
<div class="about-content">
<div class="about-image">
<img src="images/Om Photo.png" alt="Profile">
</div>
<div class="about-text">
<h3>Why Hire Me?</h3>
<p>With my prior experience in directing and filmmaking, I built a genuine passion for visual storytelling and film creation. And with my passion, I plan to keep bringing my creative visions to life with compelling narratives, wherever I go next.</p>
<p>My approach to filmmaking emphasizes collaboration & innovation to meet deadlines and create compelling films, either as a leader or member, to ensure that every film is edited and scripted properly. Whether it's through documentary work, narrative films, promotional videos, or camera assistance, I aim to deliver results that achieve and exceed project goals accordingly.</p>
<p>While filmmaking, I am reliable, detail-oriented, and committed to meeting deadlines through the use of basic programs in Windows. And along with my collaborative work ethic and strong communication skills, it makes me an excellent assistance for the dynamic role of Production Assistant.</p>
<div class="skills">
<h3>Core Skills </h3>
<ul class="skills-list">
<li>Video Directing</li>
<li>Scriptwriting (Celtx)</li>
<li>Video Editing (DaVinci Resolve)</li>
<li>Communication & Collaboration</li>
<li>Sound Design & Audio Syncing</li>
<li>Screenwriting & Storyboarding</li>
<li>Project Management</li>
<li>Camera Operation & Setup</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
</div>
</footer>
<script src="script.js"></script>
</body>
</html>