-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
99 lines (89 loc) · 3.27 KB
/
portfolio.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Guezel Webdesign | Professional Web Design and Development</title>
<!-- SEO Meta Tags -->
<meta
name="description"
content="Guezel Webdesign offers professional web design and development services. We design beautiful and functional websites."
/>
<meta
name="keywords"
content="web design, web development, SEO, mobile-friendly, responsive design, frontend, backend"
/>
<meta name="author" content="Guezel Webdesign" />
<meta name="robots" content="index, follow" />
<!-- Open Graph Meta Tags -->
<meta
property="og:title"
content="Guezel Webdesign | Professional Web Design and Development"
/>
<meta
property="og:description"
content="Guezel Webdesign offers professional web design and development services. We design beautiful and functional websites."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.guezelwebdesign.com" />
<meta
property="og:image"
content="https://www.guezelwebdesign.com/assets/social-share-image.png"
/>
<meta property="og:site_name" content="Guezel Webdesign" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Guezel Webdesign | Professional Web Design and Development"
/>
<meta
name="twitter:description"
content="Guezel Webdesign offers professional web design and development services. We design beautiful and functional websites."
/>
<meta
name="twitter:image"
content="https://www.guezelwebdesign.com/assets/social-share-image.png"
/>
<!-- Canonical Link -->
<link rel="canonical" href="https://www.guezelwebdesign.com" />
<!-- Favicon -->
<link rel="icon" href="img/favicon.ico" type="image/x-icon" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.1.0/css/all.css"
integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt"
crossorigin="anonymous"
/>
<!-- Font and Styles -->
<link
href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/root.css" />
<link rel="stylesheet" href="css/layout.css" />
<link rel="stylesheet" href="css/header.css" />
<link rel="stylesheet" href="css/portfolioPage.css" />
<link rel="stylesheet" href="css/footer.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<!-- Loader, Header, About Me, ve Footer bileşenlerini içerecek bölümler -->
<div id="loader"></div>
<div id="header"></div>
<div id="portfolio-content"></div>
<div id="footer"></div>
<!-- Ana JavaScript Dosyası -->
<script type="module" src="js/app.js"></script>
</body>
</html>