-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 2.07 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 2.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Troy Serapio Portfolio</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="script.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<div class='container'>
<h1 class='name'>Troy Serapio <a target="_blank" href='https://www.youtube.com/watch?v=HaM4Y0SkAxA'
class='aka'>AKA: Cool Guy
😎</a>
</h1>
<hr>
<div class='conversation'>
<div class='chatmessage maker'>
<p class='text_message'>Hello There!</p>
</div>
</div>
<br>
<div class='input'>
<div class='emojis'>
<h2 class='headers'>Emojis</h2>
<div class='emoji_button' id='emoji' onclick="chat(this.id, this.innerHTML)">😎</div>
<div class='emoji_button' id='emoji' onclick="chat(this.id, this.innerHTML)">😂</div>
<div class='emoji_button' id='emoji' onclick="chat(this.id, this.innerHTML)">😀</div>
<div class='emoji_button' id='emoji' onclick="chat(this.id, this.innerHTML)">👀</div>
<div class='emoji_button' id='emoji' onclick="chat(this.id, this.innerHTML)">🇵🇭</div>
</div>
<div class='inp_text'>
<h2 class='headers'>Questions</h2>
<div class='inp_buttons' id='tmay' onclick="chat(this.id, this.innerHTML)">Tell me about yourself.</div>
<div class='inp_buttons' id='ways' onclick="chat(this.id, this.innerHTML)">What are your skills?</div>
<div class='inp_buttons' id='ol' onclick="chat(this.id, this.innerHTML)">Other Links?</div>
<div class='inp_buttons' id='c' onclick="chat(this.id, this.innerHTML)">Contact?</div>
</div>
</div>
</div>
</body>
</html>