-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
114 lines (98 loc) · 4.83 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Description" content="Chat-bot creates in the framework of be Code education program">
<link rel="shortcut icon" type="image/jpg" href="pictures/smurf.ico"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w=="
crossorigin="anonymous" />
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> -->
<link rel="stylesheet" href="style.css">
<title>Chatbot</title>
</head>
<body>
<!-- Header -->
<header class="container blue-bg">
<nav class="row nav">
<a class="nav-link" href="#footer"><i class="fas fa-users"><span class="pl-2">Collaborators</span></i></a>
<a class="nav-link" href="https://github.com/Yuliya-beCode/Javascript"><i class="fab fa-github"><span
class="pl-2">Repository</span></i></a>
</nav>
</header>
<!-- Instructions-->
<main class="container">
<div class="row">
<section class="col text-center mt-3">
<h5>Welcome to the smurfs' chatbot!</h5>
<p>It's easy: just write me a message and I will answer you!</p>
</section>
</div>
<!-- Image Smurf and Text-->
<div class="row">
<figure class="col-10 offset-1 col-sm-5 offset-sm-0 text-center mt-2" style="margin: 0;">
<img class="img-fluid" id="smurfImage" src="pictures/smurf1.png" alt="firstsmurf">
</figure>
<div id="chatBox" class="card col-10 offset-1 col-sm-6 offset-sm-0 mt-2" style="width: 18rem;">
</div>
</div>
<div class="row">
<div class="col-10 offset-1 col-sm-6 offset-sm-5">
<label for="inputMessage"></label>
<textarea name="inputMessage" id="inputMessage" placeholder="Write a message"></textarea>
</div>
<div class="col-10 offset-1 col-sm-6 offset-sm-5">
<a id="send" class="btn btn-primary btn-block text-white" role="button">Send</a>
</div>
</div>
</main>
<!-- Footer -->
<footer id="footer" class="container blue-bg text-white mt-4">
<!-- Yuliya -->
<aside class="row text-center">
<figure class="col-6 col-md-2 mt-3">
<img class="img-members rounded" src="pictures/pm.jpg" alt="pm">
</figure>
<section class="col-6 col-md-2 mt-3">
<h6>Project Manager - Yuliya Bochkovskaya</h6>
<a href="https://github.com/Yuliya-beCode">
<i class="fab fa-github">/Yuliya-beCode</i>
</a>
</section>
<!-- Adriana -->
<figure class="col-6 col-md-2 mt-3">
<img class="img-members rounded" src="pictures/frontend.jpg" alt="frontend">
</figure>
<section class="col-6 col-md-2 mt-3">
<h6>Front-End Developer - Adriana Lazurca</h6>
<a href="https://github.com/adriana-lazurca">
<i class="fab fa-github">/adriana-lazurca</i>
</a>
</section>
<!-- Frances -->
<figure class="col-6 col-md-2 mt-3">
<img class="img-members rounded" src="pictures/backend.jpg" alt="backend">
</figure>
<section class="col-6 col-md-2 mt-3">
<h6>Back-End Developer - Frances Joffany Navarro</h6>
<a href="https://github.com/frances-joffany-navarro">
<i class="fab fa-github">/frances-joffany-navarro</i>
</a>
</section>
</aside>
</footer>
<!-- <script src="script.js" async></script> -->
<script src="script.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"></script>
</body>
</html>