Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
submissions
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mis21-intersession-2016
submissions
Commits
d277a1cc
Commit
d277a1cc
authored
Jun 10, 2016
by
Raphael Alampay
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated homework for 060081
parents
Changes
11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
211 additions
and
0 deletions
+211
-0
Thumbs.db
060081/hw1/mywebsite/Thumbs.db
+0
-0
about.html
060081/hw1/mywebsite/about.html
+24
-0
contact.html
060081/hw1/mywebsite/contact.html
+24
-0
scream.png
060081/hw1/mywebsite/images/scream.png
+0
-0
starry_night.jpg
060081/hw1/mywebsite/images/starry_night.jpg
+0
-0
index.html
060081/hw1/mywebsite/index.html
+56
-0
index.html
060081/hw1/mywebsite/portfolio/index.html
+29
-0
scream.html
060081/hw1/mywebsite/portfolio/paintings/scream.html
+23
-0
starry_night.html
060081/hw1/mywebsite/portfolio/paintings/starry_night.html
+23
-0
application.css
060081/hw1/mywebsite/stylesheets/application.css
+32
-0
bootstrap.css
060081/hw1/mywebsite/stylesheets/bootstrap.css
+0
-0
No files found.
060081/hw1/mywebsite/Thumbs.db
0 → 100644
View file @
d277a1cc
File added
060081/hw1/mywebsite/about.html
0 → 100644
View file @
d277a1cc
<!DOCTYPE html>
<html>
<head>
<title>
My Website - About
</title>
</head>
<body>
<h1>
About Me
</h1>
<ul>
<li>
<a
href=
"index.html"
>
Homepage
</a>
</li>
<li>
<a
href=
"about.html"
>
About Me
</a>
</li>
<li>
<a
href=
"contact.html"
>
Contact
</a>
</li>
<li>
<a
href=
"portfolio/index.html"
>
Portfolio
</a>
</li>
</ul>
</body>
</html>
\ No newline at end of file
060081/hw1/mywebsite/contact.html
0 → 100644
View file @
d277a1cc
<!DOCTYPE html>
<html>
<head>
<title>
My Website - Contact
</title>
</head>
<body>
<h1>
Call me maybe?
</h1>
<ul>
<li>
<a
href=
"index.html"
>
Homepage
</a>
</li>
<li>
<a
href=
"about.html"
>
About Me
</a>
</li>
<li>
<a
href=
"contact.html"
>
Contact
</a>
</li>
<li>
<a
href=
"portfolio/index.html"
>
Portfolio
</a>
</li>
</ul>
</body>
</html>
\ No newline at end of file
060081/hw1/mywebsite/images/scream.png
0 → 100644
View file @
d277a1cc
418 KB
060081/hw1/mywebsite/images/starry_night.jpg
0 → 100644
View file @
d277a1cc
191 KB
060081/hw1/mywebsite/index.html
0 → 100644
View file @
d277a1cc
<!DOCTYPE html>
<html>
<head>
<title>
My Website
</title>
<style>
</style>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"stylesheets/bootstrap.css"
>
</head>
<body
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-md-12 well"
>
<h1
id=
"main-h1"
>
Welcome to my site!
</h1>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-md-4 well"
>
<h2>
Section 1
</h2>
<p>
Loren ipsum doler
</p>
</div>
<div
class=
"col-md-8 well"
>
<h2>
Section 2
</h2>
<p>
This is section 2
</p>
<div
class=
"row"
>
<div
class=
"col-md-3"
>
<h4>
A
</h4>
</div>
<div
class=
"col-md-3"
>
<h4>
B
</h4>
</div>
<div
class=
"col-md-3"
>
<h4>
C
</h4>
</div>
<div
class=
"col-md-3"
>
<h4>
D
</h4>
</div>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"col-md-4"
>
<h3>
Section A
</h3>
</div>
<div
class=
"col-md-4"
>
<h3>
Section B
</h3>
</div>
<div
class=
"col-md-4"
>
<h3>
Section C
</h3>
</div>
</div>
</body>
</html>
\ No newline at end of file
060081/hw1/mywebsite/portfolio/index.html
0 → 100644
View file @
d277a1cc
<!DOCTYPE html>
<html>
<head>
<title>
My Website - Portfolio
</title>
</head>
<body>
<h1>
My Portfolio
</h1>
<ul>
<li>
<a
href=
"../index.html"
>
Homepage
</a>
</li>
<li>
<a
href=
"../about.html"
>
About Me
</a>
</li>
<li>
<a
href=
"../contact.html"
>
Contact
</a>
</li>
<li>
<a
href=
"../portfolio/index.html"
>
Portfolio
</a>
</li>
</ul>
<h2>
My Paintings
</h2>
<ol>
<li><a
href=
"paintings/scream.html"
>
Scream
</a></li>
<li><a
href=
"paintings/starry_night.html"
>
Starry Night
</a></li>
</ol>
</body>
</html>
\ No newline at end of file
060081/hw1/mywebsite/portfolio/paintings/scream.html
0 → 100644
View file @
d277a1cc
<!DOCTYPE html>
<html>
<head>
<title>
My Website - Portfolio - Paintings - Scream
</title>
</head>
<body>
<h1>
Painting: Scream
</h1>
<ul>
<li>
<a
href=
"../index.html"
>
Back to Portfolio
</a>
</li>
<li>
<a
href=
"../../index.html"
>
Back to Home
</a>
</li>
</ul>
<img
src=
"../../images/scream.png"
>
</body>
</html>
\ No newline at end of file
060081/hw1/mywebsite/portfolio/paintings/starry_night.html
0 → 100644
View file @
d277a1cc
<!DOCTYPE html>
<html>
<head>
<title>
My Website - Portfolio - Paintings - Starry Night
</title>
</head>
<body>
<h1>
Painting: Starry Night
</h1>
<ul>
<li>
<a
href=
"../index.html"
>
Back to Portfolio
</a>
</li>
<li>
<a
href=
"../../index.html"
>
Back to Home
</a>
</li>
</ul>
<img
src=
"../../images/starry_night.jpg"
>
</body>
</html>
\ No newline at end of file
060081/hw1/mywebsite/stylesheets/application.css
0 → 100644
View file @
d277a1cc
body
{
font-family
:
'Arial'
;
}
h1
{
color
:
#2e2e2e
;
font-size
:
24px
;
}
#main-h1
{
color
:
#FF5F5F
;
font-size
:
48px
;
}
ul
{
list-style-type
:
none
;
}
#main-menu
{
margin-top
:
24px
;
}
.menu-item
{
text-decoration
:
none
;
background-color
:
#C8C8EC
;
display
:
inline
;
padding-top
:
20px
;
padding-left
:
10px
;
padding-bottom
:
20px
;
padding-right
:
10px
;
}
\ No newline at end of file
060081/hw1/mywebsite/stylesheets/bootstrap.css
0 → 100644
View file @
d277a1cc
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment