-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsayhello.html
143 lines (131 loc) · 4.5 KB
/
sayhello.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Don't | Say Hello</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/magic.css">
<script src="js/script.js"></script>
<!-- Open Graph meta tags -->
<meta property="og:title" content="Don't">
<meta property="og:description" content="Say Hello">
<meta property="og:image" content="https://jordy3d.github.io/files/logo.png">
<meta property="og:url" content="https://jordy3d.github.io/dont/sayhello">
<meta property="og:type" content="website">
</head>
<body>
<header>
<div class="logo">
<h1 class="dont"><a href="index.html">Don't</a></h1>
<span>Say Hello</span>
</div>
<div class="nav"></div>
<div class="nav-toggle" onclick="toggleNav(this)"></div>
<script>loadNav();</script>
<script>checkNavFlex();</script>
</header>
<main>
<div class="content-wrapper">
<div class="content">
<div class="dont">
<h2>Don't ❌</h2>
<div class="example">
<div class="discord">
</div>
</div>
<div class="script">
<p>
Note that Keith could have got his answer minutes sooner, and needn't have kept Tim waiting.
In
fact, Tim could have started thinking about the question right away!
</p>
</div>
</div>
<div class="do">
<h2>Do ✅</h2>
<div class="example">
<div class="discord">
</div>
</div>
<div class="script">
<p>
If you feel it's a bit brusque to simply say "Hi" and ask the question, you can still
preface
your message with as many pleasantries as you see fit.
</p>
</div>
</div>
</div>
</div>
</main>
<footer>
<p>Don't just say hello... Get to the point!</p>
<p>Based on <a href="https://www.nohello.net/">nohello.net</a></p>
</footer>
<script>
var dontMessages = [
{
name: "Keith",
text: "hi",
time: "2:15PM",
imageUrl: "https://www.nohello.net/img/MxF06xdCHJ-128.webp",
delay: 1
},
{
name: "Tim",
text: "..?",
time: "2:19PM",
imageUrl: "https://www.nohello.net/img/CGi-z9VgRi-128.webp",
delay: 4
},
{
name: "Keith",
text: "what time was that thing again?",
time: "2:20PM",
imageUrl: "https://www.nohello.net/img/MxF06xdCHJ-128.webp",
delay: 1
},
{
name: "Tim",
text: "oh - 3:30",
time: "2:20PM",
imageUrl: "https://www.nohello.net/img/CGi-z9VgRi-128.webp",
delay: 1
}
];
var doMessages = [
{
name: "Dawn",
text: "Hiya! What time was that thing?",
time: "2:15PM",
imageUrl: "https://www.nohello.net/img/4gebfK1xtc-128.webp",
delay: 1
},
{
name: "Tim",
text: "hey, 3:30",
time: "2:15PM",
imageUrl: "https://www.nohello.net/img/CGi-z9VgRi-128.webp",
delay: 1
},
{
name: "Dawn",
text: "Ta - seeya then!",
time: "2:15PM",
imageUrl: "https://www.nohello.net/img/4gebfK1xtc-128.webp",
delay: 1
},
{
name: "Tim",
text: "👌 np!",
time: "2:15PM",
imageUrl: "https://www.nohello.net/img/CGi-z9VgRi-128.webp",
delay: 1
}
];
// call createMessages from script.js
createMessages(doMessages, dontMessages);
</script>
</body>
</html>