blank DOJ html
This commit is contained in:
File diff suppressed because one or more lines are too long
1811
Assets/DOJ/doj-main-header-logo.svg
Normal file
1811
Assets/DOJ/doj-main-header-logo.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 284 KiB |
219
Assets/DOJ/index.html
Normal file
219
Assets/DOJ/index.html
Normal file
@@ -0,0 +1,219 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>U.S. Department of Justice</title>
|
||||||
|
<style>
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Top information bar */
|
||||||
|
.top-bar {
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
color: white;
|
||||||
|
padding: 8px 20px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-bar-left {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flag-icon {
|
||||||
|
width: 16px;
|
||||||
|
height: 11px;
|
||||||
|
background-color: #fff;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-bar a {
|
||||||
|
color: white;
|
||||||
|
text-decoration: none;
|
||||||
|
margin-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-bar a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-bar-right {
|
||||||
|
display: flex;
|
||||||
|
gap: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-bar-right a {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Main header */
|
||||||
|
.main-header {
|
||||||
|
background-color: #0c326f;
|
||||||
|
color: white;
|
||||||
|
padding: 20px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-left {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.doj-seal {
|
||||||
|
height: 70px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.doj-seal img {
|
||||||
|
height: 100%;
|
||||||
|
width: auto;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-right {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-container {
|
||||||
|
display: flex;
|
||||||
|
gap: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-input {
|
||||||
|
padding: 10px 15px;
|
||||||
|
border: none;
|
||||||
|
font-size: 14px;
|
||||||
|
width: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-button {
|
||||||
|
background-color: #ffc72c;
|
||||||
|
border: none;
|
||||||
|
padding: 10px 15px;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-button::before {
|
||||||
|
content: "🔍";
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Yellow separator */
|
||||||
|
.yellow-separator {
|
||||||
|
height: 4px;
|
||||||
|
background-color: #ffc72c;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Navigation bar */
|
||||||
|
.nav-bar {
|
||||||
|
background-color: #2c2c2c;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-links {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
list-style: none;
|
||||||
|
gap: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-links li {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-links a {
|
||||||
|
color: white;
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 15px 20px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 5px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-links a:hover {
|
||||||
|
background-color: #3a3a3a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-links a::after {
|
||||||
|
content: "▼";
|
||||||
|
font-size: 10px;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Main content area */
|
||||||
|
.main-content {
|
||||||
|
min-height: calc(100vh - 250px);
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- Top information bar -->
|
||||||
|
<div class="top-bar">
|
||||||
|
<div class="top-bar-left">
|
||||||
|
<img src="us_flag_small.png" alt="U.S. flag" style="height:11px; width:16px; margin-right:6px; vertical-align:middle;">
|
||||||
|
<span>An official website of the United States government</span>
|
||||||
|
<a href="#">Here's how you know▼</a>
|
||||||
|
</div>
|
||||||
|
<div class="top-bar-right">
|
||||||
|
<a href="#">Our Offices</a>
|
||||||
|
<a href="#">Find Help</a>
|
||||||
|
<a href="#">Contact Us</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Main header -->
|
||||||
|
<div class="main-header">
|
||||||
|
<div class="header-left">
|
||||||
|
<div class="doj-seal">
|
||||||
|
<img src="doj-main-header-logo.svg" alt="U.S. Department of Justice Seal">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="header-right">
|
||||||
|
<div class="search-container">
|
||||||
|
<input type="text" class="search-input" placeholder="Search">
|
||||||
|
<button class="search-button"></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Yellow separator -->
|
||||||
|
<div class="yellow-separator"></div>
|
||||||
|
|
||||||
|
<!-- Navigation bar -->
|
||||||
|
<nav class="nav-bar">
|
||||||
|
<ul class="nav-links">
|
||||||
|
<li><a href="#">About</a></li>
|
||||||
|
<li><a href="#">Our Work</a></li>
|
||||||
|
<li><a href="#">News</a></li>
|
||||||
|
<li><a href="#">Resources</a></li>
|
||||||
|
<li><a href="#">Grants</a></li>
|
||||||
|
<li><a href="#">Employment</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<!-- Main content area (blank) -->
|
||||||
|
<div class="main-content"></div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
BIN
Assets/DOJ/us_flag_small.png
LFS
Normal file
BIN
Assets/DOJ/us_flag_small.png
LFS
Normal file
Binary file not shown.
Reference in New Issue
Block a user