Skip to content

Commit 3204731

Browse files
committed
Lesson15 web
1 parent 521275a commit 3204731

4 files changed

Lines changed: 46 additions & 0 deletions

File tree

web/WEB-INF/web.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
5+
version="4.0">
6+
</web-app>

web/css/style.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
header {
2+
background: none repeat scroll 0 0 #A6C9E2;
3+
color: #2E6E9E;
4+
font-size: 20px;
5+
padding: 5px 20px;
6+
}
7+
8+
footer {
9+
background: none repeat scroll 0 0 #A6C9E2;
10+
color: #2E6E9E;
11+
font-size: 20px;
12+
padding: 5px 20px;
13+
margin: 20px 0;
14+
}

web/index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<link rel="stylesheet" href="css/style.css">
6+
<title>Практика Java. Разработка Web приложения.</title>
7+
</head>
8+
<body>
9+
<header>Приложение вебинара <a href="http://javawebinar.ru/basejava/" target="_blank">Практика Java. Разработка Web
10+
приложения."</a></header>
11+
<h1>Практика Java. Разработка Web приложения.</h1>
12+
<footer>Приложение вебинара <a href="http://javawebinar.ru/basejava/" target="_blank">Практика Java. Разработка Web
13+
приложения."</a></footer>
14+
15+
</body>
16+
</html>

web/test.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Title</title>
6+
</head>
7+
<body>
8+
Test222
9+
</body>
10+
</html>

0 commit comments

Comments
 (0)