-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (81 loc) · 4.85 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Tomas Mozdren">
<title>Minimalist chatbot</title>
<link href="css/style.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link rel="icon" type="image/png" href="logo.png"/>
<link rel = "javascript" href = "js/bot.js"/>
<script async="" src="https://www.google-analytics.com/analytics.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script data-ad-client="ca-pub-6506229822910547" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-174652374-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-174652374-1');
</script>
</head>
<body style="text-align:center;">
<script type="text/javascript" src="js/headerScript.js"> </script>
<section id="topNav">
<div class="headername">
<img src="logo.png" width="5%" height="5%"></img>
<h1><b>Minimalist chatbot</b></h1>
</div>
</section>
<div class="secondarytext">
<div class="container">
<div class="row">
<div>
<textarea readonly="true" id="botChat" style="text-align:left; top: 19%; display:block; border:0px solid #2b2b2b; margin-top: 2%; float: left;width: 94.53%; margin-left:2.46%; margin-right:2.25%; height:500px; resize:none; font-family:Courier; color:white; background-color:#b916ff; overflow-y:auto; user-select:none; font-size:25px;"></textarea>
<p style="margin-left:0.5%; border:0px solid black; top:94%; width:86%;">
<input type="text" onKeypress="enterButton(event, document.getElementsByTagName('input')[0].value);" style="color:white;text-decoration-color: white; background-color:#b916ff; width: 110%; margin-left: 2.25%;">
</div>
</div>
</div>
</div>
<div id="contacts" class="maintext">
<footer>
<h2><strong>Thomas Mozdren Software Development</strong></h2>
<ul class="list-unstyled">
<li>Email: <a href="mailto:mozdrent@gmail.com">mozdrent@gmail.com</a></li>
</ul>
<ul class="botbar">
<li>
<a title="My Linkedin" target="_blank" href="https://www.linkedin.com/in/tom%C3%A1%C5%A1-mozd%C5%99e%C5%88-3382b71a6/"><img height="25px" width="25px" src="icons/linkedin.png"></img></a>
</li>
<li>
<a title="My Twitter" target="_blank" href="https://twitter.com/beangreen247"><img height="25px" width="25px" src="icons/twitter.png"></img></a>
</li>
<li>
<a title="Main channel" target="_blank" href="https://www.youtube.com/channel/UCQbA5Nc4oq6uMS2idDWsxkw"><img height="25px" width="25px" src="icons/yt.png"></img></a>
</li>
<li>
<a title="Music channel" target="_blank" href="https://www.youtube.com/channel/UC_Qo-mebrSPXU7EpkyJfJ0g"><img height="25px" width="25px" src="icons/yt.png"></img></a>
</li>
<li>
<a title="My GitHub" target="_blank" href="https://github.com/BeanGreen247"><img height="25px" width="25px" src="icons/github.png"></img></a>
</li>
<li>
<a title="My Slack" target="_blank" href="https://join.slack.com/t/tomasmozdren/shared_invite/enQtNzAxNTY1Nzg1MDEwLTVhMmQ4YTU5ZGMyZTFlMzc3NTQ0ZTMxMGUzYTYzMzlmZTZmNmU3ZDk5NzdiYzc3MDNiNDZlMGRlZjUwMTdlMDk"><img height="25px" width="25px" src="icons/slack.png"></a>
</li>
<li>
<a title="My Instagram" target="_blank" href="https://www.instagram.com/beangreen247/"><img height="25px" width="25px" src="icons/instagram.png"></a>
</li>
</ul>
<hr class="small">
<p class="text-muted">Copyright © beangreen247.github.io 2020</p>
<a href="pages/privacy.html">Privacy Policy</a>
</footer>
</div>
</body>
<script src="js/bot.js"></script>
</html>