Page last updated 2022-07-12
To build a website you need knowledge of basic HTML, CSS and a tiny bit of Javascript. css-framework takes care of the CSS (and that tiny bit of Javascript). Which just leaves the HTML which you can learn as you build that website.
Firstly we are going to give you a template and once you have changed a bit of text your website is ready. No in-depth knowledge required. All you need is a text editor. If you are using Android, I recommend Acode from the Play Store. You can see how to use Acode at https://youtu.be/295uvfXY8Q4
The template is at https://css-framework.srvr.au/template1.html. You can view it and see what it looks like. Click https://css-framework.srvr.au/template1.txt to view the code. You can copy and paste the whole code into a file called index.html (all websites start with a file called index.html). Edit the title and description in the head section then all the rest of the editing is in the body section.
What about changing the color scheme? Simple, find the hue and saturation in the head and change the current values. A great color picker is at https://www.w3schools.com/colors/colors_picker.asp. Pink has a hue of 300 and saturation of 100%. Go on make your page pink.
HTML is a markup language. Essentially markup uses opening and closing tags to format text. In HTML the tags are formed using less than and greater than signs. So to create a top level header we use <h1>My First Header</h1> - h stands for header and the 1 says its the biggest font header. h1 = biggest most important header. The closing tag uses a backslash to signify its a closing tag.
So lets build a paragraph next <p>My First Paragraph</p> - yes HTML is that easy.
I recommend https://www.w3schools.com/html/html_intro.asp as a great place to learn about HTML.