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
121 changes: 115 additions & 6 deletions Version2.0/webDevUser13.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,77 @@
<link rel="stylesheet" href="style.css">

<style>

h3 {
margin: 0;
}

h2 {
margin-bottom: 0;
}

figure {
border: 1px #cccccc solid;
padding: 4px;
margin: auto;
}

#banner {
border: 5px outset red;
background-color: lightblue;
text-align: center;
}

div#face {
width: 40vw;
height: 40vw;
max-width: 400px;
max-height: 400px;
margin: 0 auto;
position: relative;
background: yellow;
margin-top: 2rem;
}

div#face,
div#face * {
border-radius: 50%;
}

.eye {
width: 25%;
height: 25%;
background: #fff;
position: absolute;
top: 20%;
}

.left.eye {
left: 20%;
}

.right.eye {
right: 20%;
}

.pupil {
background: #000;
width: 50%;
height: 50%;
position: relative;
left: 25%;
transform-origin: bottom;
}

#mouth {
position: relative;
width: 60%;
left: 20%;
height: 25%;
border: 1vw solid transparent;
border-radius: 50%;
top: 50%;
border-bottom-color: #000;
}
</style>
</head>

Expand All @@ -30,34 +100,73 @@
<h1>About Me</h1>
<div id="tags">
<p>
This is my first webpage! I was able to code all the HTML and CSS in order to make it.
Watch out world of web design here I come!
This is my first webpage! I was able to code all the HTML and CSS in order to make it. Watch out world of web design here I come!
</p>

<h2>Heading Examples</h2>

<!-- Put your Headings ↓↓↓↓↓↓Below↓↓↓↓↓↓ here-->

<h1>This is h1</h1>
<h2>This is h2</h2>
<h3>This is h3</h3>
<h4>This is h4</h4>
<h5>This is h5</h5>
<h6>This is h6</h6>
<!-- Put your Headings ↑↑↑↑↑↑Above↑↑↑↑↑↑ here-->

<h2>Examples of "Other" HTML elements</h2>

<!-- Put your 8 examples of other elements ↓↓↓↓↓↓Below↓↓↓↓↓↓ here-->

<del>Strike</del> - puts a strike through the words
<ins>Underline</ins> - adds underline
<sub>Below</sub> -- subscript
<sup>Above</sup> -- superscript
<small>Small</small> -- defines a small text
<progress value="22" max="100"> </progress > - represents the progress of a task
<hr> — will place a horizontal line (no closing tag needed)
<abbr title="World Health Organization" > WHO </abbr> -- used to show acronyms
<!-- Put your 8 examples of other elements ↑↑↑↑↑↑Above↑↑↑↑↑↑ here-->
</div>
<h1>PUT YOUR BIG TITLE HERE</h1>
<section>
<h2>Introduction or 1st Point</h2>
<p>Content in here that explains your 1st point</p>
</section>

<section>
<h2>2nd Point</h2>
<p>Content in here that explains your 2nd point</p>
/section>
<div id="banner">
<marquee>Hello</marquee>
</div>
<h1>The blockquote element</h1>

<p>Here is a quote from WWF's website:</p>

<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
</blockquote>
<div id="face">

</div>
<div class="left eye">
<div class="pupil">
</div>
</div>
<div class="right eye">
<div class="pupil">
</div>
</div>
<div id="mouth">
</div>
</main>


<footer>

<p>
<center> Webpage made by <a href="#" target="_blank">[your name]</a></center>
<center> Webpage made by <a href="#" target="_blank">Easton Gytri</a></center>
</p>

</footer>
Expand Down
31 changes: 18 additions & 13 deletions Version3.0/user13/CSS/style.css
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
table {
font-family: "Marker Felt", "Comic Sans MS", fantasy;
color: #003366;
margin-left: auto;
margin-right: auto;
text-align: left;
border-collapse: collapse;
cellspacing: 0px;
font-family: "Marker Felt", "Comic Sans MS", fantasy;
color: #000000;
margin-left: auto;
margin-right: auto;
text-align: left;
border-collapse: collapse;
border-spacing: 0px;
}

tr {
border: 1px solid #ffffff;
text-align: center;
background-color:#9FB6CD;
border: 1px solid #000000;
text-align: center;
background-color: #ce5c5c;
}

th {
text-align: center;
color: #ffffff;
background-color: #003366;
text-align: center;
color: #000000;
background-color: #d71717;
}

td {
width: 128px;
height: 128px;
}
Binary file added Version3.0/user13/images/Background-V3.jpeg
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 Version3.0/user13/images/Concrete-gold.jpeg
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 Version3.0/user13/images/LP-HybridTheory.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 Version3.0/user13/images/Songs-deaf.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 Version3.0/user13/images/Third-Eye.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
111 changes: 111 additions & 0 deletions Version3.0/user13/list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
<!DOCTYPE html>
<html lang="en">
<!--Version 3.0
Name:
Date Completed:
-->

<head>

<title>Web Dev User ## </title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico" />
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="SHS WebDev Version 3.0 - Lists">

<!-- CSS -->
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<!-- Animate -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<!-- Custom -->
<link rel="stylesheet" href="CSS/style.css">

<!-- JavaScript -->
<!-- These are needed to get the responsive menu to work -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.8/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/js/bootstrap.bundle.min.js"></script>

<!-- Custom styles for this template -->
<style type="text/css">
footer {
font-size: 12px;
text-align: center;
}
</style>
</head>

<body>
<!---------------------------------- Begin the nav-bar ------------->
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
<div class="container-fluid">
<a href="http://shakonet.isd720.com" class="navbar-brand">WebDev</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>

<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav me-auto">
<!--↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ Edit These Items in your NavBar ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓-->
<li class="nav-item">
<a href="index.html" class="nav-link ">Home</a>
</li>
<li class="nav-item">
<a href="#foot" class="nav-link ">About Me</a>
</li>
<li class="nav-item">
<a href="music.html" class="nav-link ">Music</a>
</li>
<li class="nav-item">
<a href="list.html" class="nav-link active">Lists</a>
</li>
<li class="nav-item">
<a href="#bro" class="nav-link " tabindex="-1">Contact</a>
</li>
<!--↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ Edit These Items in your NavBar ↑↑↑↑↑↑↑↑↑↑↑↑↑↑-->
</ul>
<form class="d-flex">
<button class="btn btn-primary" type="button">Login</button>
</form>
</div>
</div>
</nav>
<!---------------------------------- End the nav-bar ------------->

<main class="container-fluid mt-3">

<h1 class="text-left my-3">My Lists</h1>
<!-- Edit this line for the title of your page -->

<!--↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ Put your content below this line ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓-->
<h2>Huh</h2>
<ul>
<li>What?</li>
<li>umm</li>
<li>hmm?</li>
</ul>
<h3>Oh!</h3>
<ol>
<li>Yeah!</li>
<li>mhmm</li>
<li>Boom!</li>
</ol>

<!--↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ Make sure all your content is above this line ↑↑↑↑↑↑↑↑↑-->
</main>

<!---------------------------------- Begin the footer ------------->
<footer id="foot">
<div>
Webpage made by <a href="#" target="_blank">[your name]</a>
</div>
</footer>
<!---------------------------------- End the footer ------------->
</body>

</html>
Loading