-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (42 loc) · 1.46 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
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<style>
.inner {
display: flex;
flex-direction: column;
width: 70%;
justify-content: center;
align-items: center;
text-align: center;
margin: auto;
}
.inner *{
margin: 4px;
}
h2 {
display: none;
}
</style>
<div class="main">
<div class="inner">
<h1>Write your Msg Here:</h1>
<h2 id="congo">Congratulations!</h2>
<h2 id="congo1">your message is sent to your favourite person... 💖</h2>
<input type="text" name="sms" id="sms">
<input type="button" onclick="sendsms()" value="Send Message" class="btn btn-success">
<h1> click here to go in chatroom :</h1>
<input type="button" name="chatroom" id="chatroom" class="btn btn-success" value="chatroom" onclick="location.href = 'https://stin.to/srwkg'">
</div>
</div>
</div>
<script src="myScript.js"></script>
</body>
</html>