-
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.
Completed W01 Mission Statement Assignment
- Loading branch information
Showing
7 changed files
with
123 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,11 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
|
||
</body> | ||
</html> |
Binary file not shown.
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,35 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>BYUI Mission Statement</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<meta name="description" content="A short description"> | ||
<meta name="author" content="Daniel Capps"> | ||
</head> | ||
<body> | ||
<div class="content"> | ||
<header class = "title"> | ||
<h1>Mission Statement</h1> | ||
<h2>Brigham Young University-Idaho</h2> | ||
</header> | ||
<main> | ||
<p> | ||
Brigham Young University-Idaho was founded and is supported and guided by The Church of Jesus Christ of Latter-day Saints. | ||
Its mission is to develop disciples of Jesus Christ who are leaders in their homes, the Church, and their communities. | ||
</p> | ||
<p><em>The university does this by:</em></p> | ||
<ol class = "list"> | ||
<li>Building testimonies of the restored gospel of Jesus Christ and fostering its principles in a wholesome academic, cultural, and social environment.</li> | ||
<li>Providing a high-quality education that prepares students of diverse interests and abilities for lifelong learning and employment.</li> | ||
<li>Serving as many students as possible within resource constraints.</li> | ||
<li>Delivering education that is affordable for students and the Church.</li> | ||
</ol> | ||
</main> | ||
<footer> | ||
<img src="byui-logo_blue.webp" alt="The BYUI logo" class="logo"> | ||
</footer> | ||
</div> | ||
</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,54 @@ | ||
.content { | ||
font-family: "Times New Roman"; | ||
font-size: 20px; | ||
outline: 1px solid #afafaf; | ||
margin: 50px; | ||
padding: 160px; | ||
padding-top: 80px; | ||
padding-bottom: 60px; | ||
max-width: 600px; | ||
text-align: center; | ||
} | ||
|
||
.title { | ||
text-transform: uppercase; | ||
letter-spacing: 2px; | ||
border-bottom: 1px solid #dfdfdf; | ||
margin: 0px; | ||
padding: 0px; | ||
|
||
} | ||
|
||
.title h1 { | ||
font-size: 48px; | ||
font-weight: normal; | ||
margin: 0px; | ||
margin-bottom: 0px; | ||
} | ||
|
||
.title h2 { | ||
color: #006EB6; | ||
font-size: 20px; | ||
font-weight: normal; | ||
padding-top: 20px; | ||
margin: 0px; | ||
} | ||
|
||
main { | ||
line-height: 1.5; | ||
text-align: left; | ||
margin-top: 50px; | ||
} | ||
|
||
.list li{ | ||
padding-bottom: 20px; | ||
} | ||
|
||
footer { | ||
|
||
} | ||
|
||
.logo { | ||
width: 150px; | ||
margin: 0px; | ||
} |
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,16 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<script src = 'running.js' defer></script> | ||
<header>Javascript Example 2</header> | ||
<p>If you have <span id="myAppleElement"></span> apples, and your friend has | ||
<span id="friendAppleElement"></span>. Then together you have | ||
<span id="totalApplesElement"></span> apples!</p> | ||
</head> | ||
<body> | ||
|
||
</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,7 @@ | ||
const myApples = 4; | ||
const friendApples = 2; | ||
let total = myApples + friendApples; | ||
|
||
document.getElementById("myAppleElement").textContent = myApples; | ||
document.getElementById("friendAppleElement").textContent = friendApples; | ||
document.getElementById("totalApplesElement").textContent = total; |
Empty file.