Skip to content

Commit

Permalink
Completed W01 Mission Statement Assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
dwcapps committed Jan 14, 2025
1 parent 71d886e commit e1c470c
Show file tree
Hide file tree
Showing 7 changed files with 123 additions and 0 deletions.
11 changes: 11 additions & 0 deletions index.html
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 added mission/byui-logo_blue.webp
Binary file not shown.
35 changes: 35 additions & 0 deletions mission/index.html
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>
54 changes: 54 additions & 0 deletions mission/styles.css
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;
}
16 changes: 16 additions & 0 deletions running.html
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>
7 changes: 7 additions & 0 deletions running.js
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 added styles/style.css
Empty file.

0 comments on commit e1c470c

Please sign in to comment.