diff options
author | Adam T. Carpenter <atc@53hor.net> | 2021-06-23 22:12:39 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2021-06-23 22:12:39 -0400 |
commit | 470d29ca5830db6850d11298a19aa9b7ff9615d7 (patch) | |
tree | e0c5a29ea7ff519675a5c4eb34e956a515c4218c /header.php | |
parent | 47352856e40e471a8ce05875fa25a0428ddb5d94 (diff) | |
download | carpentertutoring-470d29ca5830db6850d11298a19aa9b7ff9615d7.tar.xz carpentertutoring-470d29ca5830db6850d11298a19aa9b7ff9615d7.zip |
added about, updated policies, broke out header and footer, finished up
offering tiles/modals
Diffstat (limited to 'header.php')
-rw-r--r-- | header.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/header.php b/header.php new file mode 100644 index 0000000..b6707ad --- /dev/null +++ b/header.php @@ -0,0 +1,37 @@ +<!DOCTYPE html> +<html lang="en"> + +<head> + <title> + Tutoring Excellence Online and in Hampton Roads, VA - Carpenter Tutoring, + LLC + </title> + <link rel="stylesheet" href="/stylesheet.css" /> + <link rel="preconnect" href="https://fonts.gstatic.com" /> + <link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Indie+Flower&family=PT+Sans&display=swap" rel="stylesheet" /> + <link rel="stylesheet" href="/desktop.css" /> + <link rel="stylesheet" href="/widescreen.css" /> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta name="description" content="Tutoring Excellence Online and in Hampton Roads, VA" /> + <meta property="og:description" content="Tutoring excellence online and in-person" /> + <meta property="og:image" content="http://carpentertutoring.com/assets/logo.webp" /> + <meta property="og:image:secure_url" content="https://carpentertutoring.com/assets/logo.webp" /> + <meta property="og:site_name" content="Carpenter Tutoring" /> + <meta property="og:title" content="Tutoring Excellence Online and in Hampton Roads, VA - Carpenter Tutoring, LLC" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://carpentertutoring.com" /> +</head> + +<body> + <nav> + <a href="/#contact">Contact Me</a> + <a href="/#reviews">Reviews</a> + <a href="/about">About</a> + <a href="/policies">Policies</a> + <a href="/#pricing">Pricing</a> + <a href="/#offerings">Offerings</a> + <a href="/#"><img src="/assets/logo-simple.png" /></a> + </nav> + + <main> |