-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
136 lines (88 loc) · 2.36 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DigiTek - Creative Digital Agency</title>
<!--
- favicon
-->
<link rel="shortcut icon" href="./favicon.png" fill="none" type="image/svg+xml">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<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=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<!--
- preload images
-->
<link rel="preload" as="image" href="./assets/images/hero_banner.png">
</head>
<body id="top">
<!--
- #HEADER
-->
<header class="header" data-header>
</header>
<main>
<article>
<!--
- #HERO
-->
<section class="section hero" id="home" aria-label="hero">
</section>
<!--
- #SERVICE
-->
<section class="section service" id="service" aria-label="service">
</section>
<!--
- #FEATURE
-->
<section class="section feature" id="feature" aria-label="feature">
</section>
<!--
- #PROJECT
-->
<section class="section project" id="project" aria-label="project">
</section>
<!--
- #NEWSLETTER
-->
<section class="section newsletter has-bg-image" aria-label="newsletter">
</section>
<!--
- #BLOG
-->
<section class="section blog" id="blog" aria-label="blog">
</section>
</article>
</main>
<!--
- #FOOTER
-->
<footer class="footer">
</footer>
<!--
- #BACK TO TOP
-->
<a href="#top" class="back-top-btn has-after active" aria-label="back to top" data-back-top-btn>
<ion-icon name="arrow-up" aria-hidden="true"></ion-icon>
</a>
<!--
- custom js link
-->
<script src="./assets/js/script.js" defer></script>
<!--
- ionicon link
-->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>