Skip to content

Commit

Permalink
Merge pull request #3 from Klrfl/fix-conflict
Browse files Browse the repository at this point in the history
Membuat landing page
  • Loading branch information
ItecMetschoo authored May 13, 2024
2 parents 668a3a3 + fc260c0 commit d431bff
Show file tree
Hide file tree
Showing 7 changed files with 146 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ValTest/HelpWanted.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h1>Project Remembrancer</h1>
<nav>
<ul class="nav-cont">
<li>
<a href="Home.html">Home</a>
<a href="index.html">Home</a>
</li><br>
<li>
<a href="Photo-Archive.html">Photo Archive</a>
Expand Down
4 changes: 2 additions & 2 deletions ValTest/KoA.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ <h1>Project Remembrancer</h1>
<nav>
<ul class="nav-cont">
<li>
<a href="Home.html">Home</a>
<a href="index.html">Home</a>
</li><br>
<li>

<a href="Photo-Archive.html">Photo Archive</a>
</li><br>
<li>
Expand Down
2 changes: 1 addition & 1 deletion ValTest/Photo-Archive.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h1>Project Remembrancer</h1>
<nav>
<ul class="nav-cont">
<li>
<a href="Home.html">Home</a>
<a href="index.html">Home</a>
</li><br>
<li class="active">
<a href="Photo-Archive.html">Photo Archive</a>
Expand Down
2 changes: 1 addition & 1 deletion ValTest/Vid-Archive.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h1>Project Remembrancer</h1>
<nav>
<ul class="nav-cont">
<li>
<a href="Home.html">Home</a>
<a href="index.html">Home</a>
</li><br>
<li>
<a href="Photo-Archive.html">Photo Archive</a>
Expand Down
76 changes: 76 additions & 0 deletions ValTest/index.html
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>
45 changes: 45 additions & 0 deletions css/style.css
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;
}
20 changes: 20 additions & 0 deletions index.html
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>

0 comments on commit d431bff

Please sign in to comment.