-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (61 loc) · 1.83 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
<apex:page controller="nupController">
<!--Header starts-->
<style>
.content_container
{
padding: 10px;
background-color: #f2f2f2;
display: flex;
flex-direction: column;
}
.content_heading
{
padding: 10px;
font-weight: bold;
font-family: sans-serif;
font-size: 25px;
}
.requests
{
padding: 10px;
background-color: white;
border-radius: 10px;
}
</style>
<head>
<img id="theImage" src="https://rahul21.w3spaces.com/Dextara_Venture.png?bypass-cache=08222992" width="480" height="120"/>
<hr/>
</head>
<br/>
<!--Header ends-->
<div class="content_container">
<div class="content_heading">
<p class="new_requests">
NEW REQUESTS
</p>
</div>
<apex:repeat value="{!acc}" var="a">
<div class="image">
</div>
<div class="requests">
<apex:image url="{!$Resource.room1}" width= "256px" height= "144px"/>
<apex:outputText value="{!a.name}">
</apex:outputText>
</div>
<br/>
</apex:repeat>
</div>
<!--footer starts-->
<br/>
<hr/>
<center>
<table>
<tr>
<td width='70%'><i>Dextara Ventures</i><p>the place where one lives permanently <br/> especially as a member of a family or household.
</p></td>
<td><i>Srinivas Kolaparthi</i><p>Email id: srinivas@dextara.com</p>
<p>Phone number: 12234567899</p></td></tr>
</table>
</center>
<!--footer ends-->
</apex:page>