Skip to content

Commit

Permalink
taco site
Browse files Browse the repository at this point in the history
  • Loading branch information
raja8287 committed Oct 20, 2021
1 parent b6e940d commit 8ad4144
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
23 changes: 23 additions & 0 deletions firs_css.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.bg{
position: absolute;
background-image: url("https://jolly-kalam-23776e.netlify.app/restaurantwebsite/assets/images/topography.svg");
background-position:center ;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100%;
z-index: -1;
opacity: 0.7;
background: violet;
}
.btn1{
background: #fff;
color:#333;
cursor: pointer;
border: 1px solid;
padding: 1em;
}
.btn1:hover{
background: yellowgreen;
color: wheat;
}
18 changes: 18 additions & 0 deletions first_project.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<head>
<title>Terry's taco</title>
<link rel="stylesheet" href="firs_css.css">
</head>
<body>
<header id="hd">
<div class="bg">
<ul>
<li>
<a class="btn1" href="hd">TACOS</a>
<a class="btn2" href="hd">beers</a>
<a class="btn3" href="hd">wine</a>
<a class="btn4" href="hd">desert</a>
</li>
</ul>
</div>
</header>
</body>

0 comments on commit 8ad4144

Please sign in to comment.