Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Apress committed Oct 11, 2016
0 parents commit 35d98db
Show file tree
Hide file tree
Showing 151 changed files with 6,779 additions and 0 deletions.
Binary file added 3524.pdf
Binary file not shown.
Binary file added 3525.pdf
Binary file not shown.
Binary file added 9781590598054.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions LICENSE.txt
@@ -0,0 +1,27 @@
Freeware License, some rights reserved

Copyright (c) 2007 Cheryl D. Wise

Permission is hereby granted, free of charge, to anyone obtaining a copy
of this software and associated documentation files (the "Software"),
to work with the Software within the limits of freeware distribution and fair use.
This includes the rights to use, copy, and modify the Software for personal use.
Users are also allowed and encouraged to submit corrections and modifications
to the Software for the benefit of other users.

It is not allowed to reuse, modify, or redistribute the Software for
commercial use in any way, or for a user�s educational materials such as books
or blog articles without prior permission from the copyright holder.

The above copyright notice and this permission notice need to be included
in all copies or substantial portions of the software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS OR APRESS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


15 changes: 15 additions & 0 deletions README.md
@@ -0,0 +1,15 @@
#Apress Source Code

This repository accompanies [*Foundations of Microsoft Expression Web*](http://www.apress.com/9781590598054) by Cheryl D. Wise (Apress, 2007).

![Cover image](9781590598054.jpg)

Download the files as a zip using the green button, or clone the repository to your machine using Git.

##Releases

Release v1.0 corresponds to the code in the published book, without corrections or updates.

##Contributions

See the file Contributing.md for more information on how you can contribute to this repository.
Binary file added __MACOSX/fewd/._.DS_Store
Binary file not shown.
14 changes: 14 additions & 0 deletions contributing.md
@@ -0,0 +1,14 @@
# Contributing to Apress Source Code

Copyright for Apress source code belongs to the author(s). However, under fair use you are encouraged to fork and contribute minor corrections and updates for the benefit of the author(s) and other readers.

## How to Contribute

1. Make sure you have a GitHub account.
2. Fork the repository for the relevant book.
3. Create a new branch on which to make your change, e.g.
`git checkout -b my_code_contribution`
4. Commit your change. Include a commit message describing the correction. Please note that if your commit message is not clear, the correction will not be accepted.
5. Submit a pull request.

Thank you for your contribution!
Binary file added fewd/.DS_Store
Binary file not shown.
10 changes: 10 additions & 0 deletions fewd/Chapter04/feud-chapter-04.txt
@@ -0,0 +1,10 @@
Chapter 4 files are:

Text Files

structural.txt

Completed Exercises


structural.html
82 changes: 82 additions & 0 deletions fewd/Chapter04/structural.html
@@ -0,0 +1,82 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Language" content="en-us" />
<title>Structuring Your Page Exercise</title>
<meta name="description" content="An example of a well structured semantic HTML page" />
<meta name="keywords" content="structured html" />
<meta http-equiv="copyright" content="Cheryl D Wise" />
<style type="text/css">
h1 {
font-size: 1.8em;
}
</style>
</head>
<body>
<h1><a name="top"></a>Structuring Your Page Exercise</h1>
<p>In this exercise we will be adding page structure. On real page
most of the text would be in paragraph elements with a list or two
and possibly a data table. In this exercise we will be using the different
ways of structuring your page.</p>
<h2>Begin with Headers</h2>
<p>While a live page would have design elements such as mastheads,
logos, and menus or exercise page will not be using design elements,
sticking with the basics.</p>
<h2>Lists as Menus</h2>
<p>Most standards based web design uses an unordered list as the
mark-up for navigational elements since semantically your site navigation
is basically a list of pages within your site.</p>
<ul>
<li>page 1</li>
<li>page 2</li>
<li>page 3</li>
<li>page 4</li>
<li>page 5</li>
<li>page 6</li>
</ul>
<p>Tables</p>
<p>Should be limited to tabular data such as event information or
a price list.</p>
<table style="width: 100%">
<tr>
<th>item no.</th>
<th>description</th>
<th>price each</th>
<th>per dozen</th>
</tr>
<tr>
<td>1</td>
<td>red balloon</td>
<td>$0.25</td>
<td>$2.25</td>
</tr>
<tr>
<td>2</td>
<td>blue balloon</td>
<td>$0.25</td>
<td>$2.25</td>
</tr>
<tr>
<td>3</td>
<td>white balloon</td>
<td>$0.25</td>
<td>$2.25</td>
</tr>
<tr>
<td>4</td>
<td>silver mylar balloon</td>
<td>$1.75</td>
<td>$19.00</td>
</tr>
<tr>
<td>5</td>
<td>gold mylar balloon</td>
<td>$1.75</td>
<td>$19.00</td>
</tr>
</table>
<p><a href="#top">back to top</a></p>
</body>
</html>
37 changes: 37 additions & 0 deletions fewd/Chapter04/structural.txt
@@ -0,0 +1,37 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Structuring Your Page Exercise</title>
</head>
<body>
<p>Structuring Your Page Exercise</p>
<p>In this exercise we will be adding page structure. On real page
most of the text would be in paragraph elements with a list or two
and possibly a data table. In this exercise we will be using the different
ways of structuring your page.</p>
<p>Begin with Headers</p>
<p>While a live page would have design elements such as mastheads,
logos, and menus or exercise page will not be using design elements,
sticking with the basics.</p>
<p>Lists as Menus</p>
<p>Most standards based web design uses an unordered list as the
mark-up for navigational elements since semantically your site navigation
is basically a list of pages within your site.</p>
<p>page 1</p>
<p>page 2</p>
<p>page 3</p>
<p>page 4</p>
<p>page 5</p>
<p>Tables</p>
<p>Should be limited to tabular data such as event information or
a price list.</p>
<p>item no., description, price each, per dozen</p>
<p>1,red balloon, $0.25,$2.25</p>
<p>2,blue balloon,$0.25,$2.25</p>
<p>3,white balloon,$0.25,$2.25</p>
<p>4,silver mylar balloon,$1.75,$19.00</p>
<p>5,gold mylar balloon,$1.75, $19.00</p>
</body>
</html>
3 changes: 3 additions & 0 deletions fewd/chapter01.txt
@@ -0,0 +1,3 @@
Chapter 1

There are no exercise files for this chapter. Visit http://foundationsofexpressionweb.com/exercises/chapter01 for additional resources on site planning and domains.
8 changes: 8 additions & 0 deletions fewd/chapter02.txt
@@ -0,0 +1,8 @@
Chapter 2

As with Chapter 1 there are no resource files for this chapter. They will start in Chapter 3.

I would like to take this opportunity to let you know that we have support forums for Expression Web at http://forum.by-expression.com. On the main http://by-expression.com website we have video tutorials related about some of the configuration options discussed in the book as well as sample templates and tutorials on other issues that are posted in our forum or on the Microsoft Public group.

Microsoft has a newsgroup you can access with your favorite newsreader, Outlook Express or Windows Mail. If you are using Outlook Express or Windows Mail turn the the following into alink to subscribe:
news://msnews.microsoft.com/microsoft.public.expression.webdesigner
41 changes: 41 additions & 0 deletions fewd/chapter03/ch3example1.txt
@@ -0,0 +1,41 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>CSS Test</title>
</head>
<body>
<div>
<h1>CSS Test Page</h1>
</div>
<div>
<p>Menu Section</p>
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
</ul>
</div>
<div>
<h2>Content</h2>
<p>
We will be using this basic page for many of our exercises so you should
archive a copy of this file to use for your exercises in exactly this
format.
</p>
<p>
If you wish you can add more paragraphs to the content section and be
prepared to bring in some images from your computer. While I could
provide you using images and more content but using ones of your choice
will make it a bit more realistic.
</p>
<h3>Next Bit</h3>
<p>
Some more paragraphs and maybe even breaking up content into more lists
will appear in this section.
</p>
</div>
<div>Footer, copyright and stuff</div>
</body>
41 changes: 41 additions & 0 deletions fewd/chapter03/example.html
@@ -0,0 +1,41 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>CSS Test</title>
</head>
<body>
<div>
<h1>CSS Test Page</h1>
</div>
<div>
<p>Menu Section</p>
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
</ul>
</div>
<div>
<h2>Content</h2>
<p>
We will be using this basic page for many of our exercises so you should
archive a copy of this file to use for your exercises in exactly this
format.
</p>
<p>
If you wish you can add more paragraphs to the content section and be
prepared to bring in some images from your computer. While I could
provide you using images and more content but using ones of your choice
will make it a bit more realistic.
</p>
<h3>Next Bit</h3>
<p>
Some more paragraphs and maybe even breaking up content into more lists
will appear in this section.
</p>
</div>
<div>Footer, copyright and stuff</div>
</body>
61 changes: 61 additions & 0 deletions fewd/chapter03/exercise1.html
@@ -0,0 +1,61 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>CSS Test</title>
<style type="text/css">
a {
color: #000080;
}
a:visited {
color: #000080;
}
a:hover {
color: #CC0000;
}
a:active {
color: #000080;
}
.style1 {
border-style: solid;
border-width: 1px;
}

</style>

</head>
<body style="color: #000000; background-color: #FFFFFF">
<div>
<h1>CSS Test Page</h1>
</div>
<div>
<p>Menu Section</p>
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
</ul>
</div>
<div>
<h2>Content</h2>
<p>
We will be using this basic page for many of our exercises so you should
archive a copy of this file to use for your exercises in exactly this
format.
</p>
<p>
If you wish you can add more paragraphs to the content section and be
prepared to bring in some images from your computer. While I could
provide you using images and more content but using ones of your choice
will make it a bit more realistic.
</p>
<h3>Next Bit</h3>
<p>
Some more paragraphs and maybe even breaking up content into more lists
will appear in this section.
</p>
</div>
<div>Footer, copyright and stuff</div>
</body>
35 changes: 35 additions & 0 deletions fewd/chapter03/exercise1b.html
@@ -0,0 +1,35 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>CSS Test</title>
</head>
<body>
<h1>CSS Test Page</h1>
<p>Menu Section</p>
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
</ul>
<h2>Content</h2>
<p>
We will be using this basic page for many of our exercises so you should
archive a copy of this file to use for your exercises in exactly this
format.
</p>
<p>
If you wish you can add more paragraphs to the content section and be
prepared to bring in some images from your computer. While I could
provide you using images and more content but using ones of your choice
will make it a bit more realistic.
</p>
<h3>Next Bit</h3>
<p>
Some more paragraphs and maybe even breaking up content into more lists
will appear in this section.
</p>
<p>Footer, copyright and stuff</p>
</body>

0 comments on commit 35d98db

Please sign in to comment.