Files
AI/Resume_parser/templates/home.html
T
2022-12-12 10:45:51 +05:30

98 lines
1.8 KiB
HTML

<html>
<head>
<style>
.button {
background-color: #000000; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
}
.button1 {font-size: 10px;}
.button2 {font-size: 12px;}
.button3 {font-size: 16px;}
.button4 {font-size: 50px;}
.button5 {font-size: 24px;border-radius: 12px;}
body {
width: 100%;
height:100%;
font-family: 'Helvetica';
background-color:#000000;
color: #fff;
font-size: 24px;
text-align:center;
letter-spacing:1.4px;
}
.dropbtn {
background-color: #04AA6D;
color: white;
padding: 16px;
font-size: 16px;
border: none;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #ddd;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #3e8e41;}
</style>
</head>
<body>
<div style="background-image: url('https://lh3.googleusercontent.com/p/AF1QipONWF8G50u9Bu-dklcj3kzesofOn8Z0q0LdHeU1=w1080-h608-p-no-v0');
/* Full height */
height: 100%;
/ Center and scale the image nicely /
background-position: center;
background-repeat: no-repeat;
background-size: cover;">
<br>
<br>
<br>
<h2 class="button button5">Bizgaze Limited</h2><br>
<br>
<div class="dropdown">
<button class="button button5" >Parser</button>
<div class="dropdown-content">
<a href="/resume"> RESUME </a>
<a href="/invoice"> INVOICE </a>
</div>
</div>
</body>
</html>