- Rutgers Design 2B: W1
- Getting Started
- Setting up your Rutgers website
- Your first website
- For getting access to your www folder from home
- Elements
- Note
- Links
- Exercise: Student Survey
- Instructions
- Directory
- Exercise – Breaking News!
- Instructions
- Looking…
- Exercise – Pick 10
- Steps
- Source
Visible to members of this folder
Getting Started
Setting up your Rutgers website
Your first website
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Mindy's Page</title>
</head>
<body>
<p>Hello World!</p>
</body>
</html>
Elements
<body>
<p>Hello World!</p>
</body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
<p>This is a paragraph</p>
To break<br>lines<br>in a<br>paragraph,<br>use the br element.
<hr>
The hr tag creates a horizontal line in an HTML page.
<em>This is emphasized text</em>
<strong>This is strong text</strong>
<!--This is a comment. Comments are not displayed in the browser-->
<ol>
<li>This is an</li>
<li>Ordered</li>
<li>List</li>
</ol>
<ul>
<li>This is an</li>
<li>Unordered</li>
<li>List</li>
</ul>
The <code>code element</code> example
The <pre> * p r e* * </pre> example
The <em>em element</em> example
The <mark>mark element</mark> example
The <small>small element</small> example
The <strong>strong element</strong> example
The <sub>sub element</sub> example
The <sup>sup element</sup> example
<input type="radio" name="rad"> Radio input
<input type="checkbox"> Checkbox input
Text input <input type="text" value="default value that goes on and on without stopping or punctuation">
<a href="http://www.newschool.edu">This is a link</a>
This is an image <img src="assets/favicon.png" alt="Eye favicon">
Links
<img src="assets/imgs/panda.jpg" alt="A cute panda">
<img src="https://www.boostability.com/wp-content/uploads/2014/09/Panda-Update.jpg" alt="A cute panda">
Exercise: Student Survey
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Student Survey</title>
<link rel="icon" type="image/png" href="assets/imgs/favicon.png">
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
</head>
<body>
<h1>All About Me</h1>
<div class="question-container">
<div class="question">What is your name?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">Where are you from?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">When is your birthday?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">Which major are you studying? Why did you choose it?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">What year will you graduate?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">What has been your favorite class so far? Why?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">What are you hoping to learn in this class?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">What does “creative computing” mean to you?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">When you imagine a graphic designer, what do you think they do on a day to day?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">When you imagine a developer, what do you think they do on a day to day?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">Where do you see yourself after graduating? What kind of job do you want to have?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">Do you consider yourself an artist, a designer, both, or neither?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">What kind of design classes have you taken before this one?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">How much typography have you studied?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">List your favorite typefaces.</div>
<div class="answer">
<ul>
<li>Unorderdered item #1</li>
</ul>
</div>
</div>
<br/>
<div class="question-container">
<div class="question">What are you top 3 favorite artists?</div>
<div class="answer">Your answer goes here!</div>
<ol>
<li>Unorderdered item #1</li>
</ol>
</div>
<br/>
<div class="question-container">
<div class="question">Which artists do you like?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">List out some music that you like to listen to</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">What do you like to do outside of class?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">Have you ever built a website?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">Do you have any questions for me?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">Do you have a favorite website?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">Do you have a favorite place to visit?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">Do you speak any other languages?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">What is your favorite food?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">What is your favorite animal?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">Do you have a pet?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
<div class="question-container">
<div class="question">Is there any other information you’d like me to know?</div>
<div class="answer">Your answer goes here!</div>
</div>
<br/>
</body>
</html>
<img src="smiley.gif" alt="Smiley face">
<a href="https://artfiles.rutgers.edu/~fisher@art.rutgers.edu/projects/survey/index.html">Nika's Survey</a>
Exercise – Breaking News!
Looking…
Exercise – Pick 10
<body>
<h1>My Student Work</h1>
<h2>In-Class Exercises</h2>
<ul>
<li><a href="projects/survey/index.html">My Awesome Survey</a></li>
<li><a href="projects/pick10/index.html">Pick 10</a></li>
</ul>
</body>
Source