-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
index.html
84 lines (67 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:site_name" content="View Vinayak Patil's Portfolio Website">
<meta property="og:title" content="Developer | Tech Enthusiast" />
<meta property="og:description"
content="Hello there 👋🏻,My name is Vinayak Ramchandra Patil.I am a Computer Engineering student at Ch. Shivaji University 👨🏻💻📚I am eager to hear about potential career opportunities, so I would be pleased to chat about job openings in the engineering sphere.Send 'help' to know more about me." />
<meta property="og:image" itemprop="image" content="https://vinayak-portfolio-09.herokuapp.com/images/dp.jpg">
<meta property="og:type" content="website" />
<link itemprop="thumbnailUrl" href="https://vinayak-portfolio-09.herokuapp.com/images/dp.jpg">
<!-- No need to change anything here -->
<meta property="og:type" content="website" />
<meta property="og:image:type" content="image/jpeg">
<!-- Size of image. Any size up to 300. Anything above 300px will not work in WhatsApp -->
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:updated_time" content="1440432930" />
<title>Developer | Tech Enthusiast | </title>
</head>
<body onload="startFunction()">
<link itemprop="thumbnailUrl" href="https://vinayak-portfolio-09.herokuapp.com/images/dp.jpg">
<span itemprop="thumbnail" itemscope itemtype="http://schema.org/ImageObject">
<link itemprop="url" href="https://vinayak-portfolio-09.herokuapp.com/images/dp.jpg">
</span>
<nav>
<div class="navbar">
<img class="dpimg" onclick="openFullScreenDP()" src="images/squareDp.jpg" alt="">
<div class="personalInfo">
<label id="name">Vinayak Patil</label>
<label id="lastseen">last seen today at 3:24 pms</label>
</div>
</div>
</nav>
<div class="scrollable" id="myScrollable">
<div class="fullScreenDP" id="fullScreenDP">
<div class="insideDP">
<img class="dp" src="images/squareDp.jpg" alt="">
<svg class="closeBTN" onclick="closeFullDP()" xmlns="http://www.w3.org/2000/svg" width="64px"
viewBox="0 0 512 512" height="64px">
<path class="btnColor" fill="#E04F5F"
d="M504.1,256C504.1,119,393,7.9,256,7.9C119,7.9,7.9,119,7.9,256C7.9,393,119,504.1,256,504.1C393,504.1,504.1,393,504.1,256z" />
<path fill="#FFF"
d="M285,256l72.5-84.2c7.9-9.2,6.9-23-2.3-31c-9.2-7.9-23-6.9-30.9,2.3L256,222.4l-68.2-79.2c-7.9-9.2-21.8-10.2-31-2.3c-9.2,7.9-10.2,21.8-2.3,31L227,256l-72.5,84.2c-7.9,9.2-6.9,23,2.3,31c4.1,3.6,9.2,5.3,14.3,5.3c6.2,0,12.3-2.6,16.6-7.6l68.2-79.2l68.2,79.2c4.3,5,10.5,7.6,16.6,7.6c5.1,0,10.2-1.7,14.3-5.3c9.2-7.9,10.2-21.8,2.3-31L285,256z" />
</svg>
</div>
</div>
<div id="chatting" class="chatting">
<ul id="listUL">
</ul>
</div>
</div>
<footer>
<div class="sendBar">
<input id="inputMSG" onkeypress="isEnter(event)" type="text" placeholder="Type a message" autofocus>
<svg onclick="sendMsg()" viewBox="0 0 24 24" width="24" height="24" class="">
<path fill="currentColor"
d="M1.101 21.757 23.8 12.028 1.101 2.3l.011 7.912 13.623 1.816-13.623 1.817-.011 7.912z"></path>
</svg>
</div>
</footer>
</body>
</html>