Question
updating to CSS and Responsive
I am a 67 year old programmer who has been developing for the web since day 1. I code at that JavaScript DOM manipulation layer. Never used Dreamweaver. I want to help a professor update his Dreamweaver files to use CSS and add in a Menu etc. The professor is my age and has been using Dreamweaver since day 1, and never updated his 'template' to use CSS. He has 800 or so web pages.
For example:
He is here:
<BODY BGCOLOR=#000000 TEXT=#FFFFCC LINK=#00FF33 VLINK=#0033FF ALINK=#FF0000>
we want to go to something like this
body {
background-color: #F5F5F5;
color: #191970;
margin: 2em; }
a:link, a:visited {
color: blue;
text-decoration: underline; }
a:hover {
background-color:#6F98A9; }
a:focus {
color: #333333;}
I am looking for some quidance on how I can edit his files and still be compatiple with Dreamweaver. Most of the pages show image files with a description. Thanks for reading
