-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (46 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Webpack Starter Kit</title>
<!-- Twitter Card data -->
<meta name="twitter:card" value="Webpack starter kit" />
<meta
name="Description"
content="A simple webpack starter project for your basic web development needs."
/>
<!-- Open Graph data -->
<meta property="og:title" content="Webpack starter project" />
<meta property="og:type" content="article" />
<meta
property="og:url"
content="https://github.com/adityasonel/webpack-starter-kit/"
/>
<meta
property="og:description"
content="A simple webpack starter project for your basic web development needs."
/>
<!-- Mobile header color for Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#96e6a1" />
<!-- Mobile header color Windows Phone -->
<meta name="msapplication-navbutton-color" content="#96e6a1" />
<!-- Mobile header color for iOS Safari (supports black, black-translucent or default) -->
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<link
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<p class="title">Webpack Tailwind Starter Project</p>
<img
class="webpack-logo"
src="<%= require('./src/assets/icon.png') %>"
alt="webpack logo"
/>
<a id="dev-name" class="dev-name">developed with ♥️ by aditya</a>
</div>
</body>
</html>