MaverickSawyer
Acolyte of the Probe
I have just gotten to HTML in my "Introduction to Computer Information Science" class at the community college. I looked at what it took to do HTML, and decided to give it a whirl. My goal is to make a small Operations Manual for Moach's G42-200, since it has the beginnings of an HTML-based documentation.
So far, I have the following:
This turns into:
Not bad for just about 20 minutes just banging away at the keyboard with no lessons other than what's in my textbook!
Couple of things that I intend to do with this:
-Make it into a multi-page document like dansteph does. (medium/long term)
-add pictures. (near-term)
-flesh out the actual content of the manual. (near/medium term)
If anyone has hints, tips, or crits, let me know. I'm always open to expert advice! :lol:
So far, I have the following:
Code:
<html>
<head>
<title>G42-200 Ops Manual</title>
</head>
<body>
<h1>G42-200 Starliner Operations Manual</h1>
<hr />
<br />
<p>Welcome to the Moachcraft G42-200 Starliner Operations Manual. This
document will provide a rundown of how to fly your Starliner safely,
efficiently, and reliably across a wide range of environments and
missions.</p>
<br />
<br />
<h2>TABLE OF CONTENTS</h2>
<hr />
<br />
<ol><li>Introduction</li>
<li>Preflight Mission Planning</li>
<li>Pre-Takeoff Configuration</li>
<li>Engine Start Procedures</li>
<li>Taxi, Takeoff and Climbout</li>
<li>Initial Ascent</li>
<li>Transition to RAMCASTERs</li>
<li>Mid-Ascent</li>
<li>RAMCASTER Mode Switch</li>
<li>Late Ascent</li>
<li>Transition to Rocket Mode</li>
<li>Final Ascent</li>
<li>Orbital Insertion</li>
<li>Orbital Operations</li>
<li>Deorbiting</li>
<li>Initial Reentry</li>
<li>Mid-Reentry</li>
<li>Late Reentry and Supersonic Approach</li>
<li>Pattern Flight and Landing</li>
<li>Taxi, Shut Down, and Post-Flight</li>
<li>EMERGENCY PROCEDURES</li>
<li>Appendix A: Walkaround</li>
<li>Appendix B: Technical Specifications</li>
<li>Appendix C: Payload Management</li>
<li>Appendix D: Optional Equipment Packages</li>
<li>NOTES</li></ol>
<br />
<br />
<hr />
<p>Created for G42-200 WIP 303 by MaverickSawyer. Copyright 2013</p>
</body>
</html>
This turns into:
Not bad for just about 20 minutes just banging away at the keyboard with no lessons other than what's in my textbook!
Couple of things that I intend to do with this:
-Make it into a multi-page document like dansteph does. (medium/long term)
-add pictures. (near-term)
-flesh out the actual content of the manual. (near/medium term)
If anyone has hints, tips, or crits, let me know. I'm always open to expert advice! :lol: