IT:Web Site: Difference between revisions

From Atmospheric and Oceanic Science
Jump to navigation Jump to search
(Created page with "=Creating a website= All AOS users have available to them the ability to publish webpages. In order to do so, please perform the following: # If it does not already exist, cr...")
(No difference)

Revision as of 16:30, 24 August 2021

Creating a website

All AOS users have available to them the ability to publish webpages. In order to do so, please perform the following:

  1. If it does not already exist, create the directory public_html,
    mkdir ~/public_html
  2. Ensure the permissions on the directry are set correctly,
    chmod 755 ~/public_html
  3. Create your first webpage called index.html in the public_html directory. The following is a template you can use,
 <html>
   <head>
      <title>Sample AOS Webpage</title>
   </head>
   <body>
      This is my very own sample AOS webpage.
   </body>
 </html>