Jump to content




Good Free Website Builder?


  • This topic is locked This topic is locked
34 replies to this topic

#21 nutcase84

  • Members
  • 711 posts
  • LocationIn My Lonely Little Computer Corner

Posted 03 October 2013 - 06:39 AM

View PostFreack100, on 02 October 2013 - 04:05 PM, said:

What's about Joomla?

Thanks.

#22 amtra5

  • Members
  • 166 posts
  • LocationMelbourne, Australia

Posted 03 October 2013 - 08:39 PM

View PostMudkipTheEpic, on 02 October 2013 - 04:22 PM, said:

View Postnutcase84, on 02 October 2013 - 03:01 PM, said:

<html>
<title>I KNOW SOME HTML</title>
<center><h1>I ALREADY KNOW ALITTLE HTML, K? NOW TELL ME ABOUT A FREE WEBSITE BUILDER.</h1></center>
</html>

What is so horrific about learning a widely used markup language?

Also, that isn't valid HTML. The browser changes a lot of that markup so it's valid.
Also, it's not html5 compatible

Fixed :D
<html>
<title>I KNOW SOME HTML</title>
<h1 style="center">I ALREADY KNOW ALITTLE HTML, K? NOW TELL ME ABOUT A FREE WEBSITE BUILDER.</h1>
</html>


#23 Engineer

  • Members
  • 1,378 posts
  • LocationThe Netherlands

Posted 04 October 2013 - 01:22 AM

View Postamtra5, on 03 October 2013 - 08:39 PM, said:

Also, it's not html5 compatible

Fixed :D/>/>
<html>
<title>I KNOW SOME HTML</title>
<h1 style="center">I ALREADY KNOW ALITTLE HTML, K? NOW TELL ME ABOUT A FREE WEBSITE BUILDER.</h1>
</html>
Neither is that. Where is your doctype, utf encoding? Since when are you allowed to use the style in your html file?
Where is your head? Where is your body?

#24 nolongerexistant

  • Validating
  • 201 posts
  • LocationNetherlands

Posted 04 October 2013 - 10:08 AM

View Postamtra5, on 03 October 2013 - 08:39 PM, said:

Fixed :D
<html>
<title>I KNOW SOME HTML</title>
<h1 style="center">I ALREADY KNOW ALITTLE HTML, K? NOW TELL ME ABOUT A FREE WEBSITE BUILDER.</h1>
</html>

Here, I fixed it for you..

<!DOCTYPE html>

<html>
	<head>
		<title>Fixed</title>

		<style type="text/css">
			#title {
				text-align: center;
			}
		</style>
	</head>

	<body>
		<h1 id="title">HTML. Yay..</h1>
	</body>
</html>


#25 nutcase84

  • Members
  • 711 posts
  • LocationIn My Lonely Little Computer Corner

Posted 04 October 2013 - 07:09 PM

Stop complaining about my code please! I said I don't know much HTML! Now, I still need a website builder, so cough up some links for me!

#26 Kingdaro

    The Doctor

  • Members
  • 1,636 posts
  • Location'MURICA

Posted 04 October 2013 - 09:11 PM

If you're going to ask people to google website builders for you, at least do it politely.

#27 Engineer

  • Members
  • 1,378 posts
  • LocationThe Netherlands

Posted 05 October 2013 - 03:21 AM

In the time you have waited you could have learned HTML...
And why are you asking those kind of questions on forum full of programmers? Of course they are going to say you need to learn the language.

#28 nutcase84

  • Members
  • 711 posts
  • LocationIn My Lonely Little Computer Corner

Posted 05 October 2013 - 08:20 AM

I give up.

#29 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 05 October 2013 - 09:07 AM

Here is a good one. Link.

#30 Agoldfish

  • Members
  • 451 posts
  • LocationSome Fish Bowl in Ohio.

Posted 05 October 2013 - 09:19 AM

Download KomPozer? xD

#31 GravityScore

  • Members
  • 796 posts
  • LocationLand of Meh

Posted 05 October 2013 - 09:43 AM

Ahh this thread it pretty funny to read :P

On topic: http://www.google.com/webdesigner/

#32 nutcase84

  • Members
  • 711 posts
  • LocationIn My Lonely Little Computer Corner

Posted 05 October 2013 - 10:18 AM

View PostGravityScore, on 05 October 2013 - 09:43 AM, said:

Ahh this thread it pretty funny to read :P

On topic: http://www.google.com/webdesigner/

I have Google's thing, and it sucks. I can't center anything!

#33 1lann

  • Members
  • 516 posts
  • LocationSeattle

Posted 05 October 2013 - 11:16 AM

View Postnutcase84, on 05 October 2013 - 10:18 AM, said:

View PostGravityScore, on 05 October 2013 - 09:43 AM, said:

Ahh this thread it pretty funny to read :P

On topic: http://www.google.com/webdesigner/

I have Google's thing, and it sucks. I can't center anything!
Although I haven't tried Google's web designer, I'm pretty sure it has snapping to center things, or an alignment option on toolbar or something. If you can't figure out how to use a (most probably) perfectly fine website designer, I'm not sure what you can do... Your best bet is to really learn proper HTML5 with CSS3, so you actually get what you want, and allows for future proofing and full control. If you need a framework to get started off with, try http://getbootstrap.com. If you don't know where to get started, make a simple personal website, like have a title, a bio, links and images and stuff. And try to make them look nice and interactive.

#34 Imque

  • Members
  • 134 posts

Posted 16 October 2013 - 01:07 AM

If you want a website you are going to need to know HTML. Its not a waste of time and learning it will be good for the future.. Its not a hard language nor is CSS. No one will be willing to make you a website without you inserting any effort. As 1lann has stated, Twitter Bootstrap is a great CSS framework that is easy to use. Bootstrap also provides JavaScript which is also very helpful for website development. I would highly recommend learning HTML, CSS and JavaScript... Many other experienced members would recommend it too. The simple fact is, no one will make you a free website. If you really cant be bothered, install a content management system. (CMS for short) Word Press is great example. I would not recommend setting up a SharePoint server since its a real pain unless you own a dedicated server. You should rethink using Koding as its more a development environment. I would recommend purchasing a VPS as you can host a Jenkins build server or anything you desire. If you cannot afford a VPS, looking into getting a simple hosting plan with a company. I would recommend GoDaddy for this because of their excellent support and reliability. It is hosted on a shared server so you might need to expect 'server peaking'

#35 Lyqyd

    Lua Liquidator

  • Moderators
  • 8,465 posts

Posted 17 October 2013 - 09:20 AM

Locked by request.





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users