Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add meta tags for SEO #2

Merged
merged 1 commit into from
Sep 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,25 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<!-- Edit meta tags for SEO -->
<meta name="title" content="Kate Moore - Portfolio">
<meta name="description" content="Software Developer Portfolio Template that helps you showcase your work and skills">

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://lorenzomiscoli.github.io/developer-portfolio/">
<meta property="og:title" content="Kate Moore - Portfolio">
<meta property="og:description" content="Software Developer Portfolio Template that helps you showcase your work and skills">
<!-- Link to a hosted image -->
<!-- <meta property="og:image" content=""> -->

<!-- Twitter -->
<meta property="twitter:card" content="summary">
<meta property="twitter:url" content="https://lorenzomiscoli.github.io/developer-portfolio/">
<meta property="twitter:title" content="Kate Moore - Portfolio">
<meta property="twitter:description" content="Software Developer Portfolio Template that helps you showcase your work and skills">
<!-- Link to a hosted image -->
<!-- <meta property="twitter:image" content=""> -->
</head>

<body>
Expand Down