-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (105 loc) · 4.35 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Awesome Editor</title>
<link rel="stylesheet" type="text/css" href="src/styles/awesome_editor.css"/>
<style>
body {
background-color: #fff;
width: 960px;
margin: 0 auto;
padding: 80px 20px;
}
.navbar {
width: 960px;
margin: 0 auto;
}
@media all and (max-width: 1024px) {
body {
width: 60%;
padding: 120px 20px;
}
.navbar {
width: 60%;
}
}
@media all and (max-width: 640px) {
.night-mode-ribbon {
}
.navbar {
display: block;
}
}
@media handheld {
.night-mode-ribbon {
/*display: none;*/
}
}
@media print {
.toolbar {
display: none;
}
body {
width: 94%;
padding-top: 1em;
font-size: 12px;
}
}
</style>
</head>
<body class="">
<div class="awesome-editor" id="awesome-editor">
<div contenteditable="true" id="editor-content" class="editor-content">
<b><p class="align-center" font-type="Roboto-Slab" font-size="48px">The C Programming Language</p></b>
<i><p class="align-center" font-type="Roboto-Slab" font-size="22px">Brian W. Kernighan Dennis M. Ritchie</p></i>
<i><p class="align-center line-through" font-type="Roboto-Slab" font-size="22px">Brian W. Kernighan Dennis M. Ritchie</p></i>
<b><p class="align-right" font-type="Roboto-Slab" font-size="22px">Introduction</p></b>
<p class="justify" font-type="Roboto-Slab" font-size="22px">
1. C is a general-purpose programming language. It has been closely associated with the UNIX system where it was
developed, since both the system and most of the programs that runs on it are written in C. The language, however,
is not tied to any one operating system or machine; and although it has been called a "system programming
language" because it is useful for writing compilers and operating systems, it has been used equally well to write
major programs in many different domains.
</p>
<p class="justify" font-type="Roboto-Slab" font-size="22px">
2. C is a general-purpose programming language. It has been closely associated with the UNIX system where it was
developed, since both the system and most of the programs that runs on it are written in C. The language, however,
is not tied to any one operating system or machine; and although it has been called a "system programming
language" because it is useful for writing compilers and operating systems, it has been used equally well to write
major programs in many different domains.
</p>
<p class="justify" font-type="Roboto-Slab" font-size="22px">
3. C is a general-purpose programming language. It has been closely associated with the UNIX system where it was
developed, since both the system and most of the programs that runs on it are written in C. The language, however,
is not tied to any one operating system or machine; and although it has been called a "system programming
language" because it is useful for writing compilers and operating systems, it has been used equally well to write
major programs in many different domains.
</p>
</div>
<!--<div class="toolbar">
<ul class="items">
<li class="bold active">B</li>
<li class="italic">I</li>
<li class="underline">U</li>
<li class="font-size">font-size<b class="caret"></b>
<ul id="font-size-options" class="font-size-options dropdown-menu">
<li>8px</li>
<li>12px</li>
<li>14px</li>
<li>16px</li>
<li>18px</li>
<li>22px</li>
<li>26px</li>
<li>32px</li>
</ul>
</li>
</ul>
</div>-->
</div>
<a href="https://github.com/hyaocuk/AwesomeEditor"><img style="top: 0; right: 0; border: 0; position: fixed" src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"></a>
</body>
<script src="src/js/appearance.js"></script>
<script src="src/js/toolbar.js"></script>
<script src="src/js/awesome_editor.js"></script>
</html>