-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (63 loc) · 2.12 KB
/
index.html
File metadata and controls
90 lines (63 loc) · 2.12 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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/bruh.css">
<title>James Messer's Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Noto_Emoji_KitKat_263a.svg/1200px-Noto_Emoji_KitKat_263a.svg.png">
<meta name="theme-color" content="#000">
<meta property="og:site_name" content="James Messer's Portfolio" />
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Noto_Emoji_KitKat_263a.svg/1200px-Noto_Emoji_KitKat_263a.svg.png">
<meta property="og:title" content="James Messer's Portfolio" />
<meta name="description" content="Nothing Here... Just a portfolio!">
<meta property="og:description" content=";D" />
<meta charset=“UTF-8”>
</head>
<main>
<h3 class="typed"></h3>
<body onclick='window.location.href="./home.html"'>
</main>
<div class="cursor"></div>
<div class="cursor"></div>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.9"></script>
<script>
document.addEventListener('contextmenu', event => event.preventDefault());
var typed = new Typed('.typed', {
strings: [
"I am a founder...",
"I am a producer...",
"I am a genius..."
],
typeSpeed: 115,
backSpeed: 70,
loop: true,
backDelay: 200,
contentType: 'html'
});
</script>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.11"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous">
</script>
<script>
document.addEventListener('contextmenu', event => event.preventDefault());
$(document)
.mousemove(function(e) {
$('.cursor')
.eq(0)
.css({
left: e.clientX,
top: e.clientY
});
setTimeout(function() {
$('.cursor')
.eq(1)
.css({
left: e.clientX,
top: e.clientY
});
}, 100);
})
</script>
</html>