IT:Web Site

From Atmospheric and Oceanic Science
Revision as of 16:30, 24 August 2021 by Ambrish (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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>