Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
1,026 changes: 1,026 additions & 0 deletions .vs/Assignment_LookAndFeel/config/applicationhost.config

Large diffs are not rendered by default.

Binary file added .vs/Assignment_LookAndFeel/v17/.suo
Binary file not shown.
10 changes: 10 additions & 0 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"ExpandedNodes": [
"",
"\\css",
"\\img",
"\\js"
],
"SelectedNode": "\\sample.html",
"PreviewInSolutionExplorer": false
}
Binary file added .vs/slnx.sqlite
Binary file not shown.
27 changes: 27 additions & 0 deletions AboutUs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>

<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" type="text/css" href="..\css\AboutUs.css">
</head>
<body>
<div class="body1">
<h1>ABOUT US</h1>
<h2>IT'S 5 O'CLOCK SOMEWHERE!</h2>


<P>We at 5 o'clock understand that when your focus is on education, fun needs to be cheap and accessible!</P>

<p> Finding the right happy hour should not take almost as much time as attending one. Why should you waste your time cruising the internet to find the right place to meet a date, hang out with some friends, or just relax and unwind</p>

<h2>FOR STUDENTS, BY STUDENTS</h2>

<p>We are a small, four-person team focused on work, education, meeting people and saving money. Coming from various walks of life, our varying experiences offer a dynamic approach to providing the best happy hour application out there.

<p>Most importantly, we are you! So get out there and enjoy your evening! We plan on doing the same.</p>

<center><img src="..\img\HH3.jpg" /></center>
</div>

</body>
</html>
38 changes: 38 additions & 0 deletions css/AboutUs.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
body {
background: url(../img/HH2.jpg) no-repeat center fixed;
background-color: rgba(0, 0, 0, 0.8);
background-size: cover;
background-blend-mode: darken;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%)
}

div {
margin
}

h1 {
color: darkgoldenrod;
text-align: Center;
font-size: 60px
}

h2 {
color: goldenrod;
text-align: Center;
font-size: 36px
}

p {
font-size: 30px;
color: white;
text-align: Center;
}

img {
border-radius: 50%;
vertical-align: middle;
}
32 changes: 29 additions & 3 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,34 @@ html {
height: 100%;
}

/* Top Navigation Bar*/

.topnav {
background-color: black;
overflow: hidden;
opacity: 1;
}
.topnav a{
float:left;
color:aliceblue;
text-align:center;
padding: 14px 16px;
text-decoration:none;
font-size:17px;
opacity: 1;
}
.topnav a.active{
background-color:darkgoldenrod;
color:black;
}



/*Set background image*/
.container {
background-image: url('https://doc-10-ao-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/r085o9ungppbiokopob2sfbekae4uqbb/1537920000000/14802840322886517493/*/110cT8sl-pOiHGgj9yToPkAqAzrr-RNfb');
background-image: url('beer.png');
height: 100%;
opacity: .5;
background-position: center;
background-size: cover;
}
Expand All @@ -27,7 +51,9 @@ html {

/*Set circle in unordered list*/
.middle ul {
list-style-type: circle;
list-style-type: none;
margin: 0;
padding:0
}

/*Set text inside li tag to left*/
Expand All @@ -37,7 +63,7 @@ html {

/*Set text color for a tag inside middle class and ul>li element*/
.middle ul li a {
color: beige;
color: blue;
}

/*Change text color and decoration for a tags inside middle class and ul>li element*/
Expand Down
Binary file added img/HH2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/HH3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/beer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 11 additions & 15 deletions sample.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,22 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="./css/main.css">
<link rel="stylesheet" type="text/css" href="main.css">
<title>Assignment - 3</title>
</head>

<body>
<div class="container">
<div class="middle">
<h2>
Useful links
</h2>
<ul id="links">
<li>
<a href="https://www.w3schools.com/css/default.asp" target="_blank">CSS tutorial- w3schools</a>
</li>
<li>
<a href="https://pixabay.com/" target="_blank">Free Images</a>
</li>
</ul>

<div class="container">
<div class="topnav">
<a class="active" href="#home">Home</a>
<a href="Top Happy Hours">Top Happy Hours</a>
<a href="About Us">About Us</a>
<a href="Sign In">Sign In</a>
</div>


</div>
</div>

<!--JS link-->
<script src="./js/main.js"></script>
Expand Down