HTML & CSS
381 subscribers
728 photos
1 video
4 files
54 links
πŸ‘Œ HTML & CSS
@html_css_tut

πŸ‘ŒJavaScript
@javascript_tut

πŸ‘Œ PHP
@php_tut


πŸ‘ŒAll About Coding
@codingWithElias
Download Telegram
12. <a>

The <a>, or anchor, tag lets you create links. A simple link looks like this:πŸ‘‡
The "href" attribute identifies the destination of the link. In many cases, this will be another website. It could also be a file, like an image or a PDF.
Other useful attributes include "target" and "title." The target attribute is almost exclusively used to open a link in a new tab or window, like this:
The "title" attribute creates a tooltip. Hover over the link below to see how it works:
How to Make Google Home Page
using #HTML and #CSS

https://youtu.be/ZY1MYwUDZsY
Custom Button 1
<!DOCTYPE html>
<html>
<head>
<title>Custom button 1</title>
<style>
.btn-1 {
display: block;
border: none;
background: #F44336;
padding: 10px 15px;
color: #fff; font-size: 20px;
border-radius: 5px;
cursor: pointer;
outline: none;
transition: background 1s;

box-shadow: 0 8px 16px 0
rgba(0,0,0,0.2), 0 6px 20px 0
rgba(0,0,0,0.19);
}
.btn-1:hover{
background: #4CAF50;
}
</style>
</head>
<body>

<button class="btn-1">
Login
</button>

</body>
</html>

@html_css_tut
"codingWithElias"
Output πŸ–₯
Custom button 2πŸ‘‡