-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
54 lines (43 loc) · 1.05 KB
/
index.php
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>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Edytor</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src="ssEdytor.js"></script>
<link rel="stylesheet" type="text/css" href="ssEdytor.css">
<style>
.wrapper {
margin: 100px auto;
width: 800px;
height: 600px;
border: 1px solid #dddddd;
}
h1 {
font-size: 20px;
font-family: 'open sans';
}
div {
width: 100%;
height: 400px;
font-size: 14px;
font-family: 'open sans';
}
</style>
</head>
<body>
<script>
$(function() {
//start
});
</script>
<div class="wrapper">
<h1 class="editor">Tytuł</h1>
<div class="editor">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam aspernatur at
consectetur cupiditate, delectus dicta earum fugit inventore iusto laborum nobis officiis
recusandae, rem voluptas voluptatibus? Delectus, illum, nisi! Porro?
</div>
</div>
</body>
</html>