Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html link

<a href="https://www.google.com/">Link to google</a>
Comment

link html

<!-- this is a link tag -->

<link rel="" href="">
<!-- href is the location of your external ressource 
	
list of rel used with a link tag (popular) : 
	- stylesheet (css)
	- alternate
	- author
	- external 
	- incon
	- index 
-->
Comment

links html

<!--Short for “anchor” tag, the "a" tag is simply a link!  The attribute you MUST have 
for it to work is the href= (short for hyper reference) attribute, the value is a url (link)
to the website you will redirect your users to. An example of the a tag is:-->

<a href="https://www.w3schools.com/tags/tag_a.asp">Click me!</a>

<!--Like the img tag, the link can be relative or absolute but instead of linking to an image,
you link to the url! The target= attribute specifies if the url should be opened in a new tab
(_blank), the current tab (_self, by default), etc (these are target attribute values). 
Example:-->

<a href="https://www.w3schools.com/tags/att_a_target.asp" target="_blank">

<!--The example shows that the a tag will link to the url (which is a tutorial on target 
attribute) in a new tab because the attribute value is _blank!-->
Comment

link href

<a title="go to google" href="https://www.google.com">Click to Google.com</a>


Comment

link html

<a href="https://openclassrooms.com">OpenClassrooms</a>
Comment

html link

  <a href="mailto:mhmd.shrydh1996@gmail.com">Send me Email</a>
Comment

html link

<a href="link">Title of link</a>
<!--  Change link, change link title, add target="_blank" in anchor tag(<a></a>) if you want it to open in new tab. -->
Comment

link in html

<a href="https://htmlg.com/" target="_blank" rel="nofollow">Click here</a>
Comment

link html

<p>Bonjour. Souhaitez-vous consulter <a href="page2.html">la page 2</a> ?</p>
Comment

html link

<a href="enter the link in here" title="enter the mini title">enter the title of link</a
Comment

PREVIOUS NEXT
Code Example
Html :: ü html 
Html :: a tag to open in new tab 
Html :: html syntax for contact form 
Html :: how to download in html 
Html :: html img tag with alt 
Html :: og tags 
Html :: html ul types 
Html :: copy right html footer 
Html :: mailto like call 
Html :: ordering collumns in bootstrap 
Html :: jquery demo 
Html :: git pull one file 
Html :: how to add js to html 
Html :: how to add links in html 
Html :: difference between xhtml and html 
Html :: how to include the trademark symbol in html 
Html :: gradient background css for all browsers 
Html :: print button html 
Html :: bootstrap 4 form input group 
Html :: accordion bootstrap 5 collapse not working 
Html :: link md 
Html :: html table tag 
Html :: html floating text 
Html :: metadata 
Html :: ul attributes in html 
Html :: ckeditor 5 example codepen 
Html :: date of birth select box in html 
Html :: center text in html 
Html :: enable html button 
Html :: how to get the input of a textbox in html 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =