I have a github webpage. How to make a page displaying purely pdf? Ie my cv?

I have a github webpage. How to make a page displaying purely pdf? Ie my cv?

To clarify, I want the page to be filled only with pdf - no headings, etc.

+4
source share
5 answers

Just copy your pdf file to your repo and it will be available, like any other file.

For example, my resume is dedicated to my repo at https://github.com/xiongchiamiov/xiongchiamiov.github.com/blob/master/about/resume.pdf and is available on the Internet at https://changedmy.name/about/resume .pdf (I have CNAME installed for changedmy.name).

+4
source

JS index.html, pdf, github-pages.

, : -

index.html
- cv(folder)
-----cv.pdf (your cv)

.

<html>
<body>

</body>
<script type="text/javascript">
    document.location = "robin.imtqy.com/cv/cv.pdf"
</script>
</html>
+1

, PDF , iframe - https://github.com/mozilla/pdf.js.

, PDF , .

"" pdf, , , , , github.

+1

:

<html lang="fr">
<head>
<!-- note the meta tag -->
<meta http-equiv="refresh" content="0; url=http://yourprofile.imtqy.com/cv.pdf" />
  <meta charset="utf-8">
  <title>Will CV</title>
</head>
<body>
</body>
</html>

. HTML-.

0

All Articles