-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
executable file
·36 lines (31 loc) · 1.11 KB
/
example.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>round corners example</title>
<script type="text/javascript" src="jquery-1.2.1.js"></script>
<script type="text/javascript" src="roundcorners.js"></script>
<link type="text/css" rel="stylesheet" href="roundcorners.css"></link>
<style type="text/css" media="screen">
/* this rule added for visual example*/
div.round {
background-color: #dfa;
padding: 4px;
}
</style>
</head>
<body>
<div class="round">
<h2>Box with round corners</h2>
<ul>
<li>This box has round corners</li>
<li>All that is added is <code><div <strong>class="round"</strong>></code></li>
<li>See source of this file for example</li>
</ul>
</div>
<h2>More info</h2>
<p>GitHub code repository: <a href="http://github.com/jesperronn/jquery-round-corners/tree/master">jquery-round-corners</a></p>
<p>Created by Jesper Rønn-Jensen, 2008-05-26</p>
</body>
</html>