Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem



You can then use theme templates and/or plugins and customize for a good starting point which has an admin backend and database to easily manage/add/edit. Plus some SEO (Search engine optimization) to help too.
Creating websites from stratch is great too, but you should be ready to learn a lot. Web design is an artform of clean and easy navigation for both customers and web crawlers.
For Javascript - I'd also highly recommend learning Jquery, which is a library for Javascript. It makes things much easier.
PHP/MySQL database and server - PHP is a server side language that allows you to do calculations and send code to be displayed. MySQL stores data such as user information. Ideally you would create a MySQL database to store content, then load that dynamicly to the webpages with the PHP.
Else static webpages would be easier, using only HTML (or PHP) and CSS. Depending on how much content you can creating and managing.
Some people just can't accept someones idea/goal and need to change his way and start "wordpress"...
But there are ton of tools out there for you to use; free tutorials, etc. or ways to configure overall pages, etc. So take it with a grain-of-salt. He's just trying to help you. In the end you'll make your own decisions anyways.
Can you clarify what is your question then?
I see the example and your website. Are you attempting to get the code from the example to work on your own website? Or writing something different?
Did you wish to create a database?
I want to learn.. but it makes no sense when i need to learn it to continue my website.. so it would take like 2 weeks to understand JS to make the only one thing on the page.. in the future when i need some more... but now i just want to make the page run.
Just ignore/disregard my top two paragraphs. I actually went on to touch on some other options.
Okay.
Under your PHP or HTML webpage, at the top there should be a <head> tag (it's closed just before the </head> <body>). Under that you can add javascripts.
<head>
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
<title>justFAQ.it</title><!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<script src="navigation.js"></script>
</head>
<body>
(etc)
Then you have a separate file called 'navigation.js' or whatever you wish. Here you can add your javascript.
You might also want to use jquery:
<script src="https://ajax.googleapis.com/ajax/libs/jQuery/1.12.2/jquery.min.js"></script>
jQuery contains Javascript functions to speed up and do more advance stuff quickly.
Consider using the website information help found on:
http://www.w3schools.com/
(it's quite a good website for beginners)