-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (41 loc) · 2.14 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/assets/images/apple.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Iphone 15 Clone</title>
<!-- Description Meta Tag -->
<meta name="description"
content="This is a clone of the iPhone 15 website, showcasing the latest features and specifications." />
<!-- Keywords Meta Tag -->
<meta name="keywords" content="iPhone 15, clone, replica, features, specifications, Apple, smartphone" />
<!-- Author Meta Tag -->
<meta name="author" content="Ebraheem Alhetari" />
<!-- Robots Meta Tag -->
<meta name="robots" content="index, follow" />
<!-- Canonical Link Tag -->
<link rel="canonical" href="https://hetari.github.io/iphone-15-clone" />
<!-- Open Graph Meta Tags (for social media) -->
<meta property="og:title" content="Iphone 15 Clone" />
<meta property="og:description"
content="This is a clone of the iPhone 15 website, showcasing the latest features and specifications." />
<meta property="og:url" content="https://www.example.com/iphone-15-clone" />
<meta property="og:image" content="https://www.example.com/assets/images/iphone15.jpg" />
<meta property="og:type" content="website" />
<!-- Twitter Card Meta Tags (for Twitter) -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Iphone 15 Clone" />
<meta name="twitter:description"
content="This is a clone of the iPhone 15 website, showcasing the latest features and specifications." />
<meta name="twitter:image" content="https://www.example.com/assets/images/iphone15.jpg" />
<!-- font-awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>