-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (148 loc) · 5.67 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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!-- todo: complete the intro -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/prof1.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>RohChat</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="background"></div>
<!-- background -->
<!-- <div class="left_background"></div>
<div class="right_background"></div> -->
<div class="intro">
<h1>Hi, I am RohChat</h1>
<p>
<span id="wake__1">Making a bot friend is no more a dream.
</span>
<span id="wake__2">Who need real friends when you
have RohChat, your best friend who will always listen to you and will respond you politely.
Well, with RohChat you will never be alone.
</span>
<span id="wake__3">
Say GOODBYE to your lonely life.
</span>
<button id="get__started">Get Started</button>
</p>
</div>
<!-- main body -->
<div class="mobile">
<div class="mobile__layout">
<div class="mobile__screen">
<div class="mobile__screen__edge"></div>
<div class="mobile__header">
<div class="mobile__header__components">
<!-- <div class="mobile__header__back">
<a href="#">‹</a>
</div> -->
<div class="mobile__header__avatar">
<img src="images/prof1.png" alt="my img">
</div>
<div class="mobile__header__availability">
<h3>RohChat</h3>
<p>Available to talk</p>
</div>
<div class="mobile__header__menu">
<a id="open" href="#">⋮</a>
<a id="close" href="#">✕</a>
</div>
</div>
</div>
<!-- navbar -->
<div class="mobile__navbar">
<nav>
<ul class="navbar">
<li class="navlinks">
<div class="layout__color">
<div id="drop__down">
<a id="layout__drop" href="#">
<div class="dropdown__text">layout colors</div>
<div class="dropdown__icon">></div>
</a>
</div>
</div>
<div class="layout__colors">
<ul>
<li class="colors layout__black__icon"><span class="blocks" style="background-color: black;"></span> black
</li>
<li class="colors layout__purple__icon"><span class="blocks" style="background-color: #7F00FF;"></span>
purple</li>
<li class="colors layout__green__icon"><span class="blocks" style="background-color: greenyellow;"></span>
green</li>
<li class="colors layout__pink__icon"><span class="blocks" style="background-color: pink;"></span> pink</li>
</ul>
</div>
</li>
<li class="navlinks">
<div class="screen__color">
<div id="drop__down">
<a id="screen__drop" href="#">
<div class="dropdown__text">screen colors</div>
<div class="dropdown__icon">></div>
</a>
</div>
</div>
<div class="screen__colors">
<ul>
<li class="colors screen__black__icon"><span class="blocks" style="background-color: black;"></span> black
</li>
<li class="colors screen__purple__icon"><span class="blocks" style="background-color: #7F00FF;"></span>
purple</li>
<li class="colors screen__green__icon"><span class="blocks" style="background-color: greenyellow;"></span>
green</li>
<li class="colors screen__pink__icon"><span class="blocks" style="background-color: pink;"></span> pink</li>
</ul>
</div>
</li>
</ul>
</nav>
</div>
<div class="mobile__screen__chats">
<div class="mobile__screen__send">
<input class="text" type="text" placeholder="Type a message" spellcheck="true" maxlength="25" />
<a class="submit" href="#"><i class="fa fa-chevron-circle-right fa-2x"></i></a>
</div>
</div>
</div>
</div>
<!-- <div class="mobile__description">
<h1>RohChat</h1>
<p>Making a bot friend is no more a dream.
</p>
<p style="padding-top:1em">Who need real friends when you
have RohChat, your best friend who will always listen to you and will respond you politely.
Well, with RohChat you will never be alone.
</p>
</p>
<p style="padding-top:1em">
Say GOODBYE to your lonely life.
</p>
</div> -->
</div>
<audio id="user-notif" src="notification/tings.mp3"></audio>
<audio id="bot-notif" src="notification/bot.mp3"></audio>
<!-- about -->
<div class="about">
<img src="images/prof1.png" alt="about">
</div>
<div class="about__cloud">
<ul>
<li><a href="https://github.com/codeswithroh" class="github">
<i class="fa fa-github"></i>
<p>GitHub</p>
</a>
</li>
<li><a href="https://www.linkedin.com/in/rohit-purkait-b457991a9/" class="linkedin">
<i class="fa fa-linkedin-square"></i>
<p>LinkedIn</p>
</a>
</li>
</ul>
</div>
<script src="app.js"></script>
</body>
</html>