forked from WebDevSimplified/Introduction-to-Web-Development
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75cb251
commit a9da7ae
Showing
7 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.vscode |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
</head> | ||
<body> | ||
<header> | ||
<nav> | ||
<ul> | ||
<li>HOME</li> | ||
<li>STORE</li> | ||
<li>ABOUT</li> | ||
</ul> | ||
</nav> | ||
<hr> | ||
<h1>The Generics</h1> | ||
</header> | ||
|
||
<section> | ||
<h2>ABOUT</h2> | ||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta dolorum nulla accusantium perferendis quam explicabo odit quisquam ea natus? Saepe ducimus, minima error alias dolorum consectetur officia architecto voluptatem iure sunt eveniet nam, recusandae explicabo, itaque vel autem. Accusamus suscipit sit labore sed blanditiis a est rem harum expedita veritatis numquam voluptatibus dolore voluptatum sunt repellendus explicabo, excepturi beatae perferendis. Numquam dicta quis ipsum explicabo suscipit alias placeat, ea, vero minus ducimus voluptatibus iste repellendus deleniti? Eos, quas! Voluptatem tempora explicabo, corrupti dolor hic iure quo, ipsum voluptates quaerat omnis accusamus et vel, necessitatibus doloribus optio. Odio nobis ad molestias.</p> | ||
<img src="Images/Band Members.png"> | ||
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Distinctio qui consequuntur aut. Nobis debitis ipsum soluta sit itaque officiis impedit maiores suscipit magni id harum consequuntur quas delectus culpa, saepe nostrum, autem ullam! Assumenda molestiae reprehenderit sunt ducimus id saepe porro vitae asperiores eum accusantium? Illum aliquid excepturi magni quos.</p> | ||
</section> | ||
|
||
<footer> | ||
<h3>The Generics</h3> | ||
<ul> | ||
<li><img src="Images/YouTube Logo.png"></li> | ||
<li><img src="Images/Spotify Logo.png"></li> | ||
<li><img src="Images/Facebook Logo.png"></li> | ||
</ul> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
</head> | ||
<body> | ||
<header> | ||
<nav> | ||
<ul> | ||
<li>HOME</li> | ||
<li>STORE</li> | ||
<li>ABOUT</li> | ||
</ul> | ||
</nav> | ||
<hr> | ||
<h1>The Generics</h1> | ||
<button type="button">Get Our Latest Album</button> | ||
<br> | ||
<button type="button">►</button> | ||
</header> | ||
|
||
<section> | ||
<h2>TOURS</h2> | ||
<div> | ||
<div> | ||
<strong>JUL 16</strong> | ||
<span>DETROIT, MI</span> | ||
<span>DTE ENEREGY MUSIC THEATRE</span> | ||
<button type="button">BUY TICKETS</button> | ||
<hr> | ||
</div> | ||
<div> | ||
<strong>JUL 19</strong> | ||
<span>TORONTO, ON</span> | ||
<span>BUDWEISER STAGE</span> | ||
<button type="button">BUY TICKETS</button> | ||
<hr> | ||
</div> | ||
<div> | ||
<strong>JUL 22</strong> | ||
<span>BRISTOW, VA</span> | ||
<span>JIGGY LUBE LIVE</span> | ||
<button type="button">BUY TICKETS</button> | ||
<hr> | ||
</div> | ||
<div> | ||
<strong>JUL 29</strong> | ||
<span>PHOENIX, AZ</span> | ||
<span>AK-CHIN PAVILION</span> | ||
<button type="button">BUY TICKETS</button> | ||
<hr> | ||
</div> | ||
<div> | ||
<strong>AUG 2</strong> | ||
<span>LAS VEGAS, NV</span> | ||
<span>T-MOBILE ARENA</span> | ||
<button type="button">BUY TICKETS</button> | ||
<hr> | ||
</div> | ||
<div> | ||
<strong>AUG 7</strong> | ||
<span>CONCORD, CA</span> | ||
<span>CONCORD PAVILION</span> | ||
<button type="button">BUY TICKETS</button> | ||
<hr> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<footer> | ||
<h3>The Generics</h3> | ||
<ul> | ||
<li><img src="Images/YouTube Logo.png"></li> | ||
<li><img src="Images/Spotify Logo.png"></li> | ||
<li><img src="Images/Facebook Logo.png"></li> | ||
</ul> | ||
</footer> | ||
</body> | ||
</html> |