-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
106 lines (87 loc) · 3.88 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Profile</title>
<script src="clickbtn.js"></script>
<script src='voicerecon.js'></script>
<link rel="stylesheet" href="bootstrap/bootstrap.min.css">
<!-- <script src="bootstrap/bootstrap.min.js"></script> -->
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="css/profile.css">
<!-- <link rel="stylesheet" href="css/switch.css"> -->
</head>
<body onload="clickbtn()">
<nav class="navbar navbar-expand-lg navbar-fixed-top navbar-light " style="background-color: #e3f2fd;">
<ul class="navbar-nav mr-auto">
<li class="nav-item ">
<a class="nav-link" href="home.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item ">
<a class="nav-link " href="contact.html">Contact</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="post.html">Post</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="profile.html">Profile</a>
</li>
</ul>
<button type="button" class="btn btn-outline-success" onclick="recon('profile')" id='speak'>Speak/Read</button>
</div>
</nav>
<div class='container'>
<div class="col-md-6" >
<div class="card mb-6 box-shadow" style="color:black">
<img class="card-img-top" src="img/myfb2.jpg" alt="Card image" >
<div class="card-body">
<h4 class="card-title">Sanjay S</h4>
<h5 class="card-text">Basically Iam a programmer</h5>
<br>
<p> i know
<ul>
<li> python </li>
<li> c++ </li>
<li> js </li>
<li> html/css </li>
<li>Inkscape</li>
<li>gimp</li>
<li>shotout</li>
</ul>
</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<button onclick="window.location.href='home.html'" class="btn btn-outline-info" id='home'>Go Home</button>
</div>
<small style="color:red">home</small>
</div>
</div>
</div>
</div>
<textarea class="form-control" id="results" cols="80" rows="5"></textarea>
</div>
<script src='https://code.responsivevoice.org/responsivevoice.js'></script>
<script type="text/javascript">
// <--
var speechpause=0;
function toggleSpeech(){
if(speechpause!=1){
responsiveVoice.pause();
speechpause=1;
}else{
responsiveVoice.resume();
speechpause=0;
}
}
//-->
</script>
<div style="float:right">
<input onclick="toggleSpeech()" type="button" value="||" />
</div>
</body>
</html>