mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
72 lines
3.5 KiB
Text
72 lines
3.5 KiB
Text
<div class="header-Outro">
|
|
<div class="row content single-Col">
|
|
<h1>Learn How to Make Web Sites!</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content single-Col misc-page">
|
|
<p>Learning how to make web sites is one of the most important things you can learn. It allows you to create any content you want, arrange that content in any way you like, and share that content with the world. Be it an <a href="http://sheldonbrown.com" target="_blank">information portal for teaching people how to repair bikes</a>, or an interesting graphics project, or your poetry. These are things you can't do with traditional social networks, but that you can do with HTML.</p>
|
|
|
|
<p class="delta">
|
|
We are currently building out our library of tutorials.
|
|
</p>
|
|
|
|
<p>
|
|
Until then, please check out the following links to get you started:
|
|
</p>
|
|
|
|
<h3>HTML</h3>
|
|
|
|
<p>HTML is short for "HyperText Markup Language", and is the basic building block used to build all web sites.</p>
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="http://www.htmldog.com/guides/html/beginner" title="Learn beginner HTML">HTML Beginner Tutorial</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://developer.mozilla.org/en-US/learn/html" title="Learn beginner HTML from Mozilla">Mozilla Learn HTML Resources</a>
|
|
</li>
|
|
<li>
|
|
<a href="http://codepupil.com/" title="Learn from games">CodePupil.com teaches with games</a>
|
|
</li>
|
|
<li>
|
|
<a href="http://www.codecademy.com/tracks/web" title="online lessons">Online lessons at Codecademy.com</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<h3>CSS</h3>
|
|
|
|
<p>CSS is short for "Cascading Style Sheets", which is the code used to set the style of your web pages. It is embedded in your HTML, and directs how your web site should look. If HTML was your house, CSS would be what allows you to decorate the way it looks.</p>
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="https://developer.mozilla.org/en-US/learn/css" title="Learn beginner CSS from Mozilla">Mozilla Learn CSS Resources</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<h3>CSS Frameworks</h3>
|
|
|
|
<p>CSS frameworks are pre-built CSS styles that make it easy to quickly build a nice looking web page, without having to "roll your own" set of styles. Neocities itself uses one as the basis for our design (Brass Tacks). They are very useful, and definitely worth checking out once you have an understanding of how CSS works.</p>
|
|
<ul>
|
|
<li>
|
|
<a href="http://getbootstrap.com" title="Bootstrap" target="_blank">Twitter Bootstrap</a>
|
|
</li>
|
|
<li>
|
|
<a href="http://purecss.io/" title="Yahoo!'s Pure CSS" target="_blank">Pure</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/scottaohara/Brass-Tacks" title="Brass Tacks Sass Framework" target="_blank">Brass Tacks</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/owenversteeg/min" title="Min: the world's smallest (995 bytes) CSS framework" target="_blank">Min</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<h3>JavaScript</h3>
|
|
<p>JavaScript is the programming language that comes standard with all web browsers. You can embed JavaScript code into your HTML to allow you to program your web sites to do things. JavaScript was once a weak language with a lot of problems, but it is now a very fast and powerful language that is used for both web browsers and for complicated server backends (with Node.js). It is a great beginners language if you want to learn how to program, and can be used to perform almost any kind of program.</p>
|
|
|
|
<ul>
|
|
<li><a href="https://developer.mozilla.org/en-US/learn/javascript">Mozilla Learn JavaScript Resources</a></li>
|
|
</ul>
|
|
|
|
</div> <!-- end .content -->
|