Skip to content

Instantly share code, notes, and snippets.

View helenzhangg's full-sized avatar

Helen Zhang helenzhangg

View GitHub Profile
@lkwatson
lkwatson / redirect.html
Created March 8, 2018 03:07
Simple Code for Doing a Redirect
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; url=https://www.example.me/">
</head>
<body>
<p>If you aren't automatically redirected,
<a href="https://www.example.me/">click here.</a></p>
</body>
</html>