HTML Page Creation Guide - Bobleoble/tech-journal GitHub Wiki
- Go to /var/www/html
- Use Vi to create index.html
- Use the following as an html doc guide:
<html>
<head>
<title>
Insert Title
</title>
</head>
<body>
Insert Body
</body>
</html>
- If you have to change port go to /etc/httpd/conf/httpd.conf
- Relative link:
<a href=/about/about.html>about</a> - Absolute link:
<a href=http://192.168.1.xxx/about/about.html>about</a> - Add any directories and other html files as test specifies...