Skip to content
This repository has been archived by the owner on Dec 22, 2024. It is now read-only.

Feedback #1

Open
wants to merge 15 commits into
base: feedback
Choose a base branch
from
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
Binary file added VC_Intro_Video.MOV
Binary file not shown.
Binary file added VC_Intro_Video.mp4
Binary file not shown.
40 changes: 40 additions & 0 deletions goodbye.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>

<head>
<title>Goodbye!</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>

<body>
<h1>Goodbye World</h1>
<h2>Adios</h2>
<p> What a short website </p>
</body>
<head>
<title>Go Yale, Go!</title>
</head>

<body>
<figure>
<iframe width="560" height="315" src="https://www.youtube.com/embed/RYRF5-zdY8Q?si=W6ZqxdtBDIlzzx6Z" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<figcaption>Sourced for educational purposes from On Harvard Time.</figcaption>
</figure>

<head>
Another Video? Wow!
</head>
<figure>
<video width="320" height="240" controls>
<source src="VC_Intro_Video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<figcaption>This is a video I am uploading to build a website for another project.</figcaption>
</figure>
</body>


<a href="index.html"> Home Page </a>

</html>

12 changes: 7 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,27 @@
</head>
<body>
<!-- Head and subhead -->
<h1>Programming and Data for Policymakers [DPI-691M]</h1>
<h1> Programming and Data for Yalies </h1>
<h2>Welcome to shopping days!</h2>

<!-- Image -->
<img src="https://www.hks.harvard.edu/sites/default/files/images/paragraph_footer/harvard-kennedy-school-logo_1.png"/>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Yale_University_logo.svg/1000px-Yale_University_logo.svg.png"/>

<!-- Paragraphs of text -->
<p>You should take this course whether or not you plan to code for a living.</p>
<p class="italic-text"><strong>You should take this course whether or not you plan to code for a living.</strong></p>
<p>It will help you:</p>

<!-- Unordered List (bullet points) -->
<ul>
<ol>
<li>Learn how to pick up new technical skills (in any language) on your own.</li>
<li>Learn how to ask the right questions to identify someone trying to sell you bad technology.</li>
<li>Understand the value of open source technology in Government.</li>
<li>Speak with experts and coders on the topic.</li>
</ul>
</ol>

<!-- Invoke the JavaScript file for interactive image -->
<script type="text/javascript" src='main.js'></script>
</body>
</html>

<a href="goodbye.html"> Goodbye Page </a>
16 changes: 14 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* Set background */
html {
background-color: maroon;
background-color: #00356b;
}

/* styles for the body of the site */
body {
width: 60%;
background-color: orange;
background-color: lightgoldenrodyellow;
border: 5px solid black;
padding: 0 20px 20px 20px;
margin-top: 25px;
Expand Down Expand Up @@ -37,3 +37,15 @@ img {
height: auto;

}

/* Italicized text */

.italic-text {
font-style: italic;
}

/* Applying to a specific HTML element, e.g., a paragraph */

p.italic-text {
font-style: italic;
}