-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Klrfl/fix-conflict
Membuat landing page
- Loading branch information
Showing
7 changed files
with
146 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<!doctype html> | ||
<head> | ||
<title>Bruh</title> | ||
<link rel="stylesheet" href="test-style.css" /> | ||
</head> | ||
<body> | ||
<div class="real"> | ||
<h1>Project Remembrancer</h1> | ||
<img src="Source/HeaderBanner.png" /> | ||
</div> | ||
<nav> | ||
<ul class="nav-cont"> | ||
<li class="active"> | ||
<a href="index.html">Home</a> | ||
</li> | ||
<br /> | ||
<li> | ||
<a href="Photo-Archive.html">Photo Archive</a> | ||
</li> | ||
<br /> | ||
<li> | ||
<a href="Vid-Archive.html">Video Archive</a> | ||
</li> | ||
<br /> | ||
<li> | ||
<a href="HelpWanted.html">Furthering our Cause</a> | ||
</li> | ||
<br /> | ||
<li> | ||
<a href="KoA.html">The King of Ages</a> | ||
</li> | ||
<br /> | ||
</ul> | ||
</nav> | ||
|
||
<div class="Opener"> | ||
<h2>Forever remember all that was ever.</h2> | ||
<p> | ||
Admire the net's largest collection of archive's pertaining to Them for | ||
free. | ||
</p> | ||
</div> | ||
|
||
<div class="Home-Desc"> | ||
<h2>A little about us</h2> | ||
<h4>Our Pledge</h4> | ||
<p> | ||
As part of the Independent and Tested Expeditionary Cinemagrophy division | ||
(ITEC) it is our sworn obligation to document, identify and otherwise | ||
explain any anomalies assigned to us, mostly pertaining to The Tainted | ||
Inheritors designated as 10-PPLG-2.<br /><br /> | ||
*Clarification: 10 = corresponding to which wave caused emergence, PPLG = | ||
Procedure and Processing: Leave Guarded, 2 = number of wave's subset if | ||
present. | ||
</p> | ||
<br /> | ||
<h4>Our Duty</h4> | ||
<p> | ||
To achieve our goals is to consider no task too difficult, no ends too | ||
loose and no action too unthinkable. Only the complete and whole research | ||
of Them shall sate us, from which it shall never come. It is for this | ||
reason we have spent our efforts sending scouting and probing operations | ||
to best study and identify Them. | ||
</p> | ||
<br /> | ||
<h4>Our Lonesome Road</h4> | ||
<p> | ||
It is through and for all this that we have created this domain to act as | ||
the largest acting archive for material relevant to our goal. To act as a | ||
profile for our struggles and for future cross reference if necessary. | ||
</p> | ||
</div> | ||
|
||
<a href="HelpWanted.html" id="Help-Us">Learn how you can help us?</a> | ||
<script src="UI.js"></script> | ||
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
font-family: | ||
system-ui, | ||
-apple-system, | ||
BlinkMacSystemFont, | ||
"Segoe UI", | ||
Roboto, | ||
Oxygen, | ||
Ubuntu, | ||
Cantarell, | ||
"Open Sans", | ||
"Helvetica Neue", | ||
sans-serif; | ||
|
||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 100vh; | ||
} | ||
|
||
ul { | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
|
||
display: flex; | ||
flex-wrap: wrap; | ||
gap: 1rem; | ||
} | ||
|
||
ul a { | ||
text-decoration: none; | ||
padding: 0.5rem; | ||
display: inline-block; | ||
outline: 1px solid #dfdfdf; | ||
} | ||
|
||
ul a:hover { | ||
background: #efefef; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<title>Showcase tugas Website iTEC</title> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link href="css/style.css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<main> | ||
<h1>Showcase tugas website iTEC</h1> | ||
|
||
<p>baru ada 1 orang yang mengumpulkan tugas nih...</p> | ||
<ul> | ||
<li><a href="ValTest/">Valentino</a></li> | ||
<li><a href="#">belum ada...</a></li> | ||
</ul> | ||
</main> | ||
</body> | ||
</html> |