Link to home
Start Free TrialLog in
Avatar of vulture714
vulture714

asked on

website modification

I have a website and I wanted to change the name of my business and contact information, but don't know how to do this.  The person I paid to do the website is no longer available and I have no idea on how to program.  I believe the website was done via HTML.  

The other issue I have with the website is that I don't know how to modify or even know where to begin with my last page which is supposed to have clients login with questions...it's more like a form.


Avatar of tygrus2
tygrus2
Flag of Australia image

Company name and contact details are probably just plain text within the html file. You can open the files with a HTML editor, MS Word or just Wordpad.
Use MS Word like a WYSIWYG editor and save as HTML.

Or open a text editor and look for your company name between html tags after the <html><body>
eg.
<p><font size="16pt">Company name</font><br>4 Links Rd<br><b>Suburb</b></p>.

<p> is the start of a paragraph (large space before line).
<br> does a line break without starting a new paragraph.
</p> is the end of a paragraph.
<b></b> bold text is placed between the b tags

You can easily learn some HTML or just find a WYSIWYG style HTML editor.

WYSIWYG = What You See Is What You Get ie. like a modern word processor (MS Word).

Avatar of Paul Jackson
Is this a hosted webiste or does it run on a server you own?
Assuming hosted, do you know who hosts it?
What is the website address assuming it is available on the internet so we can have a look at it?
Updating contact information should be fairly simple as it is probably static text in the file, it just requires identifying which file it is in and then updating it.

What is it you want to change on the login/questionaire form?
Avatar of vulture714
vulture714

ASKER

This should be on a hosted website..Godaddy.com

It's not hosted right now.  I do have to code however...

On the contact us page, we have a form that asks for name, address, and comments and it's supposed to email it to our email, but I have no idea how to do this part of it.
ASKER CERTIFIED SOLUTION
Avatar of vulture714
vulture714

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
best answer