-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 1.74 KB
/
index.html
File metadata and controls
44 lines (40 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href="images/favicon.png" rel="icon" type="image/png" />
<link href="images/favicon.png" rel="icon" type="image/x-icon" />
<title>Password Generator - React & TypeScript</title>
<meta name="description" content="React & TypeScript - Password Generator" />
<link rel="canonical" href="https://ferditarakci.com.tr" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://password-generator.ferditarakci.com.tr" />
<meta property="og:site_name" content="Password Generator - React & TypeScript" />
<meta property="og:title" content="Password Generator - React & TypeScript" />
<meta property="og:description" content="React & TypeScript - Password Generator" />
<meta
property="og:image"
content="https://resume.ferditarakci.com.tr/assets/images/favicon.png"
/>
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WQMBG7R847"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-WQMBG7R847')
</script>
</body>
</html>