-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (42 loc) · 1.19 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
<!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" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/favicon/favicon-16x16.png"
/>
<title>Starling UI - Rohit Gaur</title>
<link rel="stylesheet" href="/pages/style.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header></header>
<nav></nav>
<div class="sui_brand">
<img id="sui_logo" src="/assets/starling.svg" alt="startling ui logo" />
<span id="sui_brand_text">Starling UI</span>
</div>
<div class="sui_cta">
<button id="getStarted" class="sui_btn">Get Started</button>
<button id="docs" class="sui_btn btn_outline">Documentation</button>
</div>
<script src="app.js"></script>
<script src="/pages/nav.js"></script>
</body>
</html>