I need to creat a website | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I need to creat a website

please help me

4th May 2017, 9:03 AM
hamed Nassor alzakuwan
3 Answers
+ 9
If you want to be a pro, and control every aspect of your website, learn HTML ,then CSS, and then JavaScript and finally PHP. Else, you go to wix.com or such sites which help you to create sites by dragging and dropping.
4th May 2017, 9:23 AM
Meharban Singh
Meharban Singh - avatar
+ 3
Here: <html> <head> <title>Your Webpage Title Goes Here</title> </head> <body> <!--The body element contains the full visible content of the web page--> <header> <!--The header typically includes your logo, tagline, and may contain a nav element--> <nav> <!--The nav element isn't used for every single link but for navigational menus--> </nav> </header> <main> <!--The main element cannot be used inside of anything other than the body element. It is intended to hold the main content of the page.--> <nav> <!--You can use a nav element just about anywhere--> </nav> <article> <!--If your web page contains a blog post or news article it makes sense to wrap the whole article in article tags--> <aside> <!--The aside tag can be used within an article or outside of it. It is used to mark content that is related but not central to the main content of the page--> </aside> <section> <!--Sections are used to seperate major parts of an element, such as chapters of an HTML ebook, or to cordone off the comments section from the rest of the main element--> </section> </article> <aside> <!--The aside element would also be used to mark a sidebar if used outside of the main element--> <section> <!--Within a sidebar you could use section elements to identify the different parts of the sidebar. For example, you could put adds in one section, related posts in a second section, and a newsletter signup form in a third section element.--> </section> </aside> </main> <footer> <!--The footer typically contains links to things like About Us, Privacy Policy, Contact Us and so forth. It may also contain a nav, address, section, or aside element.--> </footer> </body> </html>
4th May 2017, 9:18 AM
Thanh Le
Thanh Le - avatar
0
good I was looking for someone has this career ok this my url on a Facebook let building this a website together with some friends https://www.facebook.com/profile.php?id=100016419336142
4th May 2017, 9:32 AM
Boss
Boss - avatar