-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
29 lines (28 loc) · 1.1 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
<!doctype html>
<html>
<head>
<title>Behance Portfolio Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
if ('attachEvent' in document.documentElement) {
document.createElement('header');
document.createElement('figure');
document.createElement('footer');
}
</script>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.min.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Cantata+One|Open+Sans:300,600">
<link rel="stylesheet" href="public/css/style.min.css">
</head>
<body>
<img class="loading" src="public/svg/loading-spin.svg" alt="Loading">
<script src="public/js/app.min.js"></script>
<script>
Behance({
user: 'behance-username-here'
});
</script>
</body>
</html>