-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.fxml
51 lines (49 loc) · 2.08 KB
/
Contact.fxml
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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.image.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?>
<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.loanproject.contactController">
<children>
<ImageView fitHeight="194.0" fitWidth="607.0" layoutX="-3.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@contactus.jpg" />
</image></ImageView>
<ImageView fitHeight="37.0" fitWidth="37.0" layoutX="49.0" layoutY="215.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@call.png" />
</image>
</ImageView>
<ImageView fitHeight="37.0" fitWidth="37.0" layoutX="49.0" layoutY="261.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@email.png" />
</image>
</ImageView>
<ImageView fitHeight="37.0" fitWidth="37.0" layoutX="49.0" layoutY="310.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@location.png" />
</image>
</ImageView>
<Label layoutX="102.0" layoutY="220.0" text="9009-2102109">
<font>
<Font size="18.0" />
</font>
</Label>
<Label layoutX="92.0" layoutY="266.0" text="onlineadvisor@gmail.com">
<font>
<Font size="18.0" />
</font>
</Label>
<Label layoutX="87.0" layoutY="316.0" text="Our head office in Vasai West,Mumbai ,Pin code-400104">
<font>
<Font size="16.0" />
</font>
</Label>
<Label layoutX="78.0" layoutY="342.0" text="Our branch in various location Bangalore , Delhi, Gorakpur,Pune,Thane ,Aurangabad,">
<font>
<Font size="14.0" />
</font>
</Label>
<Button fx:id="button_home" layoutY="1.0" mnemonicParsing="false" style="-fx-background-color: bluies;" text="Back" />
</children>
</AnchorPane>