-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhow-to-use.html
69 lines (64 loc) · 2.59 KB
/
how-to-use.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How to Use - Coverquai</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="nav">
<div class="nav-container">
<a href="index.html" class="nav-logo">Coverquai</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="how-to-use.html">How to Use</a>
<a href="tos.html">Terms of Service</a>
</div>
</div>
</nav>
<header>
<h1>How to Use Coverquai</h1>
<p>Follow these simple steps to generate your perfect cover letter</p>
</header>
<div class="container">
<div class="steps">
<div class="step-card">
<div class="step-content">
<h3>Step 1: Install the Extension</h3>
<p>Add Coverquai to Chrome from the Chrome Web Store. It's completely free!</p>
</div>
<div class="step-image-container">
<img src="screenshots/step1.png" alt="Installation step" class="step-image">
</div>
</div>
<div class="step-card">
<div class="step-content">
<h3>Step 2: Upload Your Resume</h3>
<p>Upload your resume once and set it as default for quick access.</p>
</div>
<div class="step-image-container">
<img src="screenshots/step2.png" alt="Resume upload step" class="step-image">
</div>
</div>
<div class="step-card">
<div class="step-content">
<h3>Step 3: Find a Job</h3>
<p>Navigate to any job posting on supported websites.</p>
<p>Currently supported websites: LinkedIn, Glassdoor, Workday, Eightfold AI</p>
</div>
</div>
<div class="step-card">
<div class="step-content">
<h3>Step 4: Generate Cover Letter and Download</h3>
<p>Click the Coverquai icon and watch as AI creates your personalized cover letter.</p>
<p>Download the cover letter as a PDF or copy the text directly.</p>
</div>
<div class="step-image-container">
<img src="screenshots/step4.png" alt="Generation step" class="step-image">
</div>
</div>
</div>
</div>
</body>
</html>