HTML & CSS
358 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
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πŸ‘‡
<!DOCTYPE html>
<html>
<head>
<title>Custom button 2</title>
<style>
.btn-2 {
display: block;
border: 2px solid #008CBA;
background: transparent;
padding: 10px 15px;
color: #008CBA;
font-size: 20px;
border-radius: 5px;
cursor: pointer;
outline: none;
transition: background 1s,
color 1s;

}
.btn-2:hover{
background: #008CBA;
color: #fff;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
</style>
</head>
<body>

<button class="btn-2">
Sign Up
</button>

</body>
</html>

@html_css_tut
"codingWithElias"
Output πŸ’»