Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
git-story
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Camron Blackburn
git-story
Commits
49c7a0d5
Commit
49c7a0d5
authored
4 years ago
by
Camron Blackburn
Browse files
Options
Downloads
Patches
Plain Diff
simple webpage
parent
cc5f8b00
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
simple.html
+0
-18
0 additions, 18 deletions
simple.html
simple/index.html
+104
-0
104 additions, 0 deletions
simple/index.html
simple/sample.jpg
+0
-0
0 additions, 0 deletions
simple/sample.jpg
simple/sample.mp4
+0
-0
0 additions, 0 deletions
simple/sample.mp4
with
104 additions
and
18 deletions
simple.html
deleted
100644 → 0
+
0
−
18
View file @
cc5f8b00
<!DOCTYPE html>
<html>
<head>
<title>
WEBSITE
</title>
</head>
<body>
hey hey.
<br><br>
<h2>
document as you go!
</h2>
<br><br>
spent hours typing up this page
<br><br>
scrutinizing formatting
<br><br>
overlaying blocks with barebones css at the top of the html file
<br><br>
i would be sad if I lost this
</body>
This diff is collapsed.
Click to expand it.
simple/index.html
0 → 100644
+
104
−
0
View file @
49c7a0d5
<!DOCTYPE html>
<html>
<head>
<title>
WEBSITE
</title>
</head>
<body>
hey hey.
<h2>
document as you go!
</h2>
so you write a simple function website with raw html and a few style tags
added to the head section
<h1>
HTML Basics
</h1>
<h2>
line breaks
</h2>
add a line break like
<br>
this
<br>
with
<code>
&
ltbr
&
gt
</code>
<h2>
Headers
</h2>
You can organize all of the information in your page with nested header
fields of varying sizes with:
<xmp>
<h1>
header 1
</h1>
<h2>
header 2
</h2>
<h3>
header 3
</h3>
<h4>
header 4
</h4>
<h5>
header 5
</h5>
</xmp>
that should look like:
<br>
<h1>
header 1
</h1>
<h2>
header 2
</h2>
<h3>
header 3
</h3>
<h4>
header 4
</h4>
<h5>
header 5
</h5>
<h2>
Lists
</h2>
you can create a numbered list (ordered list) with
<code>
&
ltol
&
gt
&
lt/ol
&
gt
</code>
or bullet points (unordered list) with
<code>
&
ltul
&
gt
&
lt/ul
&
gt
</code>
and then embed list items with
<code>
&
ltli
&
gt
&
lt/li
&
gt
</code>
<xmp>
number list
<ol>
<li>
first point
</li>
<li>
second point
</li>
<li>
third point
</li>
</ol>
or bullet points
<ul>
<li>
bullet one
</li>
<li>
bullet two
</li>
<li>
bullet three
</li>
</ul>
</xmp>
should end up looking like this:
<br><br>
number list
<ol>
<li>
first point
</li>
<li>
second point
</li>
<li>
third point
</li>
</ol>
or bullet points
<ul>
<li>
bullet one
</li>
<li>
bullet two
</li>
<li>
bullet three
</li>
</ul>
<h2>
media
</h2>
embed images with the
<code>
&
ltimg
&
gt
</code>
tag
<br></br>
<code>
&
lt img src="path/to/img_file.jpg" alt="alternative text description"
width="500" height="600"
&
gt
</code>
<br><br>
<img
src=
"sample.jpg"
alt=
"example image"
height=
"400"
>
<br><br>
or videos with
<code>
&
ltvideo
&
gt
</code>
tag
<br><br>
<code>
&
ltvideo width="320" height="240" controls
&
gt
<br>
&
ltsource src="path/to/movie.mp4" type="video/mp4"
&
gt
<br>
Your browser does not support the video tag.
<br>
&
lt/video
&
gt
</code>
<br><br>
<video
width=
"320"
height=
"240"
controls
>
<source
src=
"sample.mp4"
type=
"video/mp4"
>
Your browser does not support the video tag.
</video>
<br><br>
<h2>
more resources and tutorials
</h2>
<ul>
<li><a
href=
"https://www.w3schools.com/tags/tag_header.asp"
>
headers
</a></li>
<li><a
href=
"https://www.w3schools.com/tags/tag_li.asp"
>
lists
</a></li>
<li><a
href=
"https://www.w3schools.com/tags/tag_img.asp"
>
images
</a></li>
<li><a
href=
"https://www.w3schools.com/tags/tag_video.asp"
>
videos
</a></li>
</ul>
</body>
This diff is collapsed.
Click to expand it.
simple/sample.jpg
0 → 100644
+
0
−
0
View file @
49c7a0d5
40.5 KiB
This diff is collapsed.
Click to expand it.
simple/sample.mp4
0 → 100644
+
0
−
0
View file @
49c7a0d5
File added
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