Skip to content
Permalink
8b37e2bac5
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
72 lines (69 sloc) 1.23 KB
<!DOCTYPE html>
<html lang="en">
<head>
<title>Team 2 agile work. </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
}
.header { /* Style the header */
background-color: #f1f1f1;
padding: 20px;
text-align: center;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(216, 216, 216);
top: 0;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.div2
{
width: 150px;
height: 150px;
border: 5px solid rgba(247, 92, 92, 0.938);
box-sizing: border-box;
color: rgb(0, 0, 0);
padding: 14px 16px;
font-size: 50px;
text-align: center;
margin: 0 auto;
}
li a:hover {
background-color: rgb(206, 206, 206);
}
.active2 {
background-color: rgb(48, 130, 207);
}
</style>
</head>
<body>
<script src ="index.js"></script>
<div class="header">
<h1>Tempautre Page!</h1>
</div>
<ul>
<li>
<a href="Lights.html">Lights</a>
</li>
<li><a class = "active2" href="Lights.html" >Tempautre</a></li>
<li><a href="#Data">Data</a></li>
</ul>
<div class="div2">50°C</div>
<button >Press for tempature</button>
</body>
</html>