Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cs409mp0
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pthakur3
cs409mp0
Commits
e08e6248
Commit
e08e6248
authored
1 year ago
by
Pratyush Thakur
Browse files
Options
Downloads
Patches
Plain Diff
done
parent
62bf4727
No related branches found
No related tags found
No related merge requests found
Pipeline
#197168
canceled
1 year ago
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/css/main.css
+49
-1
49 additions, 1 deletion
src/css/main.css
src/index.html
+27
-1
27 additions, 1 deletion
src/index.html
src/js/index.js
+2
-0
2 additions, 0 deletions
src/js/index.js
with
78 additions
and
2 deletions
src/css/main.css
+
49
−
1
View file @
e08e6248
/* Your CSS here. */
html
{
box-sizing
:
border-box
;
padding-top
:
5vh
;
padding-left
:
2.5vw
;
padding-right
:
2.5vw
;
padding-bottom
:
5vh
;
background-color
:
black
;
text-align
:
center
;
}
img
{
height
:
150px
;
width
:
150px
;
margin
:
10px
;
}
body
{
margin
:
0
;
padding
:
0
;
}
#box1
{
text-align
:
center
;
box-sizing
:
border-box
;
height
:
80vh
;
width
:
95vw
;
background-color
:
aqua
;
border-left
:
10vw
solid
white
;
border-right
:
10vw
solid
white
;
border-top
:
5vh
solid
white
;
border-bottom
:
5vh
solid
white
;
}
#box1
a
{
display
:
block
;
margin
:
auto
;
}
#box1
p
{
text-align
:
left
;
}
This diff is collapsed.
Click to expand it.
src/index.html
+
27
−
1
View file @
e08e6248
...
...
@@ -2,6 +2,8 @@
<html
lang=
"en"
>
<head>
<link
rel=
"stylesheet"
href=
"css/main.css"
>
<script
type=
"text/javascript"
src=
"js/index.js"
></script>
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"x-ua-compatible"
content=
"ie=edge"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
...
...
@@ -9,10 +11,34 @@
</head>
<body>
<h1>
Hello World!
</h1>
<div
id =
"box1"
>
<img
src=
"assets/image.jpg"
/>
<h2>
Pratyush Thakur
</h2>
<h2>
pthakur3@illinois.edu
</h2>
<a
href =
"www.google.com"
>
"hello"
</a>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Sint itaque qui mollitia reiciendis rem voluptas aliquam, distinctio quidem quis, id rerum voluptate possimus asperiores, omnis corrupti natus in eveniet dicta.
</p>
<button
id =
"change"
type =
"button"
>
Click Me!
</button>
<script
src=
"bundle.js"
type=
"text/javascript"
></script>
</div>
</body>
</html>
This diff is collapsed.
Click to expand it.
src/js/index.js
+
2
−
0
View file @
e08e6248
/* Your JS here. */
console
.
log
(
'
Hello World!
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment