forked from mgea/UX_CaseStudy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.09 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.09 KB
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
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta charset="UTF-8">
<title>UX case study</title>
<meta name="application-name" content="UX_CaseStudy de Diseño de interfaces de Usuario">
<meta name="description" content="Práctica de la asignatura Diseño de Interfaces de Usuario de la universidad de Granada">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify@4/themes/vue.css"
/>
</head>
<body>
<div id="app">Please wait...</div>
<script>
window.$docsify = {
name: 'UX case study',
loadSidebar: false,
maxLevel: 3,
coverpage: true,
themeColor: '#FF7212',
mergeNavbar: true,
topMargin: 90,
repo: 'https://github.com/mgea/UX_CaseStudy'
};
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
</body>
</html>