-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.71 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.71 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
<!doctype html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com data:; img-src 'self' data: https:; connect-src 'self' ws: wss:; object-src 'none'; base-uri 'self'; frame-ancestors 'none'"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Sercan Var @msvdev | Frontend Developer Portfolio"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Space+Grotesk:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Plaster&display=swap"
rel="stylesheet"
/>
<link rel="icon" type="image/png" sizes="32x32" href="/msvdev.png" />
<link rel="preload" href="/linkedin-hover.png" as="image" />
<link rel="preload" href="/bugcrowd-hover.png" as="image" />
<title>Sercan Var @msvdev | Web + Mobile + Web Security</title>
<script>
(function () {
var storedTheme = localStorage.getItem("portfolio-theme");
var safeTheme =
storedTheme === "light" || storedTheme === "dark"
? storedTheme
: "dark";
document.documentElement.setAttribute("data-theme", safeTheme);
})();
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>