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
1,015 changes: 1,015 additions & 0 deletions .vs/Assignment_LookAndFeel/config/applicationhost.config

Large diffs are not rendered by default.

Binary file added .vs/Assignment_LookAndFeel/v16/.suo
Binary file not shown.
1,015 changes: 1,015 additions & 0 deletions .vs/Assignment_LookAndFeel2/config/applicationhost.config

Large diffs are not rendered by default.

Binary file added .vs/Assignment_LookAndFeel2/v16/.suo
Binary file not shown.
3 changes: 3 additions & 0 deletions .vs/ProjectSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}
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": "\\JerrysJoyfullCookies.html",
"PreviewInSolutionExplorer": false
}
Binary file added .vs/slnx.sqlite
Binary file not shown.
Binary file added Group8_Assignment2_Selfreflection.docx
Binary file not shown.
61 changes: 61 additions & 0 deletions Menu.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" type="text/css" href="css/styles.css">

</head>
<body>

<header class="hero">

<nav>
<ul class="main-nav">
<li><a href="home.html">Home</a></li>
<li><a href="favorites.html">Favorites</a></li>
<li><a href="nutrition.html">Nutrition Fact</a></li>
<li><a href="feedback.html"> Feedback</a></li>
</ul>
</nav>

</header>


<div class="breakfast1">

<section class="text">
<h1>Breakfast</h1>
<h2>7am Breakfast we’re open!</h2>
<section class="bf-type">
<h1>Full breakfast</h1>
<p class="desc">Continental breakfast</p>
<span>USD 8.49</span>
</section>
<section class="bf-type">
<h1>Kids breakfast</h1>
<p class="desc">Pancakes &amp; Syrup</p>
<span>USD 5.49</span>
</section>
<section class="bf-type">
<h1>Sausage &amp; Egg </h1>
<p class="desc"> </p>
<span>USD 4.99</span>
</section>
<section class="bf-type">
<h1>Toast &amp; Jam</h1>
<p class="desc"></p>
<span>USD 3.99</span>
</section>
<section class="bf-type">
<h1>Muffins</h1>
<p class="desc"> </p>
<span>USD 2.95</span>
</section>
</section>


</div>



</body>
</html>
67 changes: 67 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@

<!DOCTYPE html>

<html>
<head>
<link rel="stylesheet" type="text/css" href="l1-csslink.css">
<style>

h1
{
color: Blue;
margin-right: 100px;
}
h2
{
color: purple;
margin-right: 100px;
}

h3
{
color: Green;
margin-right: 100px;
}
img
{
margin-top:-5px
}

small
{
color: brown;
}
p
{
color: black;
}

</style>
<meta charset="utf-8" />
<title>Expereince doughnut Chart</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.js"></script>

</head>

<body>
<div id="info">
<h1><span itemprop="name">Manoj Remela</span></h1>
<div id="photo">
<img src="http://myweb.usf.edu/~vremela/Manoj_profile_pic.jpg" alt="Manoj Release Profile photo avatar" width="170" >

</div>
<h3><span itemprop="jobTitle">USF Student</span></h3>
<small itemprop="address" itemscope itemtype="http://myweb.usf.edu/~vremela">
<span itemprop="addressLocality">Tampa</span>,
<span itemprop="addressRegion">Florida</span>,
<span itemprop="addressCountry">USA</span>;
</small>
<small><span itemprop="email">vremala@usf.edu</span>;</small>
<small><a href="https://www.linkedin.com/in/varaha-remela-50366a65" itemprop="url">My Portfolio</a>
</small>
</div>


</body>

</html>
Loading