29 lines
515 B
Plaintext
29 lines
515 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
@page { size: letter; margin: 0.5in 0.75in; }
|
|
|
|
/* Hide ATS version */
|
|
.ats-only { display: none !important; }
|
|
.web-only { display: block; }
|
|
|
|
/* Your current beautiful styling */
|
|
#contact-table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
/* ... rest of your styling ... */
|
|
}
|
|
|
|
.experience-table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
/* ... */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{{ content }}
|
|
</body>
|
|
</html>
|