#can someone help me??

5 messages · Page 1 of 1 (latest)

kindred jungle
#

i’ve got two questions.

  1. when <button>Click me now!!!!</button> is made, how do i configure it so the button directs to a website or something?
  2. How do I make a link for my website?
languid fossilBOT
#

Thanks for your question :clap:, if someone gives you an answer it would be great if you thanked them with a :white_check_mark: in response. This response will earn you both points for special roles on this server.

loud gull
#

a button doesnt have a feature to link anywhere. you can either use a hyperlink <a href="https://example.com">click me</a> and style it as a button with css,
or you could wrap a button in a link like

<a href="https://example.com">
  <button>Click me!</button>
</a>

not sure what you mean by "make a link for your website". did you perhaps think of a url like "https://my-site.com"? that needs a few things (a domain, a server with a public ip address and a webserver software on that machine)

kindred jungle
#

thank you so much :3

loud gull
#

if you want to upload your website for testing/development there are a few free webhosters you can use, for example https://www.infinityfree.com/ (as long as you use plain html or php)
theyll give you everything you need including a subdomain (address/"link"), storage space and a configured webserver, with a simple web interface to manage it