![]() Back to www.deitel.com |
1 <?xml version = "1.0"?>
|
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
3 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
4
|
5 <!-- Fig. 6.2: declared.html -->
|
6 <!-- Declaring a style sheet in the header section. -->
|
7
|
8 <html xmlns = "http://www.w3.org/1999/xhtml">
|
9 <head>
|
10 <title>Style Sheets</title>
|
11
|
12 <!-- this begins the style sheet section -->
|
13 <style type = "text/css">
|
14
|
15 em { background-color: #8000ff;
|
16 color: white }
|
17
|
18 h1 { font-family: arial, sans-serif }
|
19
|
20 p { font-size: 14pt }
|
21
|
22 .special { color: blue }
|
23
|
24 </style>
|
25 </head>
|
26
|
27 <body>
|
28
|
29 <!-- this class attribute applies the .special style -->
|
30 <h1 class = "special">Deitel & Associates, Inc.</h1>
|
31
|
32 <p>Deitel & Associates, Inc. is an internationally
|
33 recognized corporate training and publishing organization
|
34 specializing in programming languages, Internet/World
|
35 Wide Web technology and object technology education.
|
36 Deitel & Associates, Inc. is a member of the World Wide
|
37 Web Consortium. The company provides courses on Java,
|
38 C++, Visual Basic, C, Internet and World Wide Web
|
39 programming, and Object Technology.</p>
|
40
|
41 <h1>Clients</h1>
|
42 <p class = "special"> The company's clients include many
|
43 <em>Fortune 1000 companies</em>, government agencies,
|
44 branches of the military and business organizations.
|
45 Through its publishing partnership with Prentice Hall,
|
46 Deitel & Associates, Inc. publishes leading-edge
|
47 programming textbooks, professional books, interactive
|
48 CD-ROM-based multimedia Cyber Classrooms, satellite
|
49 courses and World Wide Web courses.</p>
|
50
|
51 </body>
|
52 </html>
|