-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch2.ejs
More file actions
54 lines (52 loc) · 1.01 KB
/
Copy pathsearch2.ejs
File metadata and controls
54 lines (52 loc) · 1.01 KB
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
<!DOCTYPE html>
<html>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<style>
body
{
background-image:url("searchwala.jpg");
}
div{
font-size: 30px;
color: white;
}
.card
{
height: 600px;
width: 450px;
border: 2px #000000 solid;
border-radius: 20px;
background-color:black;
opacity:0.5;
position:relative;
left:500px;
top:10px;
opacity: 0.9;
box-shadow: 2px 2px 7px 7px white;
}
img
{
height:52%;
width:90%;
position: relative;
left:5%;
top:5px;
opacity: 1;
border-radius: 10%;
}
h1{
text-align: center;
}
</style>
<body>
<div><h1>SEARCHED USER</h1></div>
<div class="card">
<img src="./<%= profileData.src %>">
<br>
<br>
<pre> <%= profileData.name %></pre>
<pre> <%= profileData.mobile %></pre>
<pre> <%= profileData.email %></pre>
</div>
</body>
</html>