<!DOCTYPE html>

<html>

<head>

    <title>Yuchen "Sylvie" Zhang</title>

    <meta http-equiv="refresh" content="0; url=/resume.pdf">

    <script>

        // Immediate redirect

        window.location.href = '/resume.pdf';

    </script>

</head>

<body>

    <script>

        // Backup redirect

        if (window.location.pathname === '/') {

            window.location.href = '/resume.pdf';

        }

    </script>

    <p>If you are not redirected automatically, <a href="/resume.pdf">click here to view my resume</a>.</p>

</body>

</html>