-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial HTML structure for the website
- Loading branch information
1 parent
171b37c
commit 37ae202
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="description" content="wip."> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Anthony Huang</title> | ||
<!-- Embeds --> | ||
<meta content="ah07.xyz" property="og:title" /> | ||
<meta content="wip." property="og:description" /> | ||
<meta content="https://ah07.xyz" property="og:url" /> | ||
<meta content="/assets/favicons/android-chrome-512x512.png" property="og:image" /> | ||
<!-- Icons --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png"> | ||
<link rel="manifest" href="/assets/favicons/site.webmanifest"> | ||
<link rel="shortcut icon" href="/assets/favicons/favicon.ico"> | ||
<meta name="apple-mobile-web-app-title" content="Anthony Huang's Website"> | ||
<meta name="application-name" content="Anthony Huang's Website"> | ||
<!-- Stylesheet --> | ||
<link rel="stylesheet" href="/src/main.css"> | ||
<script src="https://kit.fontawesome.com/ebba275678.js" crossorigin="anonymous"></script> | ||
</head> | ||
|
||
<body> | ||
<h1>WIP</h1> | ||
</body> |