how to link website to a facebook group, tweeter, youtube?

59 views Asked by At

I want to link the website to facebook group, tweeter, youtube, VK. So that when I click on the social media button on the website, I will follow them.

2

There are 2 answers

0
Web Dev Guy On
0
Manish Poduval On

You can do this in two ways

  • With an <a> tag
  • With <form>

Anchor tag (<a>)

.html file

<a href="http://facebook.com" class="button">Facebook</a>

.css file

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;
}

If you use Bootstrap then do the following:

<a href="http://facebook.com" class="btn btn-default">Facebook</a>

Forms (<form>)

.html file

<form action="http://facebook.com">
    <input type="submit" value="Facebook" />
</form>

Or (with JavaScript)

<input type="button" onclick="location.href='http://facebook.com';" value="Facebook" />