-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbottomDiv.xhtml
More file actions
39 lines (36 loc) · 1.26 KB
/
bottomDiv.xhtml
File metadata and controls
39 lines (36 loc) · 1.26 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
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html">
<h:head>
<title>Bottom</title>
<h:outputStylesheet library="css" name="style.css"/>
<h:outputStylesheet library="css" name="bootstrap.min.css" />
<h:outputScript library="js" name="jquery-3.2.1.min.js" />
<h:outputScript library="js" name="bootstrap.min.js" />
<h:outputScript library="js" name="script.js" />
</h:head>
<h:body>
<form class="text-left">
<div style="margin-left: 200px;">
<br/><br/>
<h1 style="margin-top: 50px" > 联系我们</h1>
<br/>
<address>
<strong>地址:</strong>
青岛大学
</address>
<br/>
<address>
<strong>电话:</strong>
1234567
</address>
<br/>
<address>
<strong>邮箱:</strong>
1306893979@qq.com
</address>
</div>
</form>
</h:body>
</html>