-
Notifications
You must be signed in to change notification settings - Fork 0
/
cover-letter-template.html
112 lines (101 loc) · 2.24 KB
/
cover-letter-template.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
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
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Cover Letter</title>
<style>
body {
font-family: monospace;
line-height: 1.5;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
background-color: #f2f2f2;
border: 1px solid #ccc;
}
h1 {
text-align: center;
font-size: 28px;
margin-top: 0;
}
.main-text {
margin-top: 40px;
}
.profile-links {
margin-top: 40px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.profile-link {
width: 48%;
text-align: center;
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
text-decoration: none;
}
.profile-link:hover {
background-color: #3e8e41;
}
.footer {
margin-top: 40px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-end;
}
.name-address {
font-size: 12px;
line-height: 1.5;
margin: 0;
padding: 0;
text-align: left;
width: 48%;
}
.mail-address {
font-size: 12px;
line-height: 1.5;
margin: 0;
padding: 0;
text-align: right;
width: 48%;
}
</style>
</head>
<body>
<div class="container">
<h1>Cover Letter</h1>
<p>Current date: <span id="date"></span></p>
<script>
document.getElementById("date").innerHTML = new Date().toLocaleDateString();
</script>
<div class="main-text">
<p>Dear Hiring Manager,</p>
<p>Insert your cover letter text here.</p>
<p>Sincerely,</p>
<p>Your Name</p>
</div>
<div class="profile-links">
<a href="https://yourpersonalhomepage.com" target="_blank" class="profile-link">Personal Homepage</a>
<a href="https://www.linkedin.com/in/yourlinkedinprofile/" target="_blank" class="profile-link">LinkedIn</a>
<a href="https://github.com/yourgithubprofile" target="_blank" class="profile-link">GitHub</a>
<a href="https://www.kaggle.com/yourkaggleprofile" target="_blank" class="profile-link">Kaggle</a>
</div>
<div class="footer">
<p class="name-address">Your Name<br>
Your Street<br>
Your City, State, Zip</p>
<p class="mail-address">Your Email Address</p>
</div>
</div>
</body>
</html>