92 lines
2.6 KiB
HTML
92 lines
2.6 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>cephii.com</title>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<style>
|
||
|
#grid {
|
||
|
display: grid;
|
||
|
grid-template-columns: 2vw auto 2vw;
|
||
|
}
|
||
|
#services {
|
||
|
display: flex;
|
||
|
flex-flow: column;
|
||
|
justify-content: center;
|
||
|
|
||
|
ul li a img {
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
}
|
||
|
@media (max-width: 600px) {
|
||
|
#grid {
|
||
|
grid-template-columns: auto;
|
||
|
}
|
||
|
#services {
|
||
|
flex-flow: row wrap;
|
||
|
justify-content: center;
|
||
|
|
||
|
ul {
|
||
|
display: flex;
|
||
|
flex-flow: row wrap;
|
||
|
justify-content: space-between;
|
||
|
li {
|
||
|
display: inline;
|
||
|
flex: 1;
|
||
|
|
||
|
a img {
|
||
|
max-width: 50%;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
section {
|
||
|
flex-flow: column-reverse;
|
||
|
}
|
||
|
nav {
|
||
|
justify-content: space-around;
|
||
|
}
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body style="margin: 0;">
|
||
|
<header>
|
||
|
<h1>cephii.com</h1>
|
||
|
</header>
|
||
|
|
||
|
<section style="display: flex; background-color: lightblue;">
|
||
|
<nav style="flex: 1; padding: 0 2vw; display: flex; flex-flow: row wrap;">
|
||
|
<a style="padding: 0.2rem 1rem;" href="#">Home</a>
|
||
|
<a style="padding: 0.2rem 1rem;" href="#">Blog</a>
|
||
|
<a style="padding: 0.2rem 1rem;" href="#">About Me</a>
|
||
|
</nav>
|
||
|
</section>
|
||
|
|
||
|
<section id="grid">
|
||
|
<div></div>
|
||
|
<section style="display: inline;">
|
||
|
<section style="display: flex;">
|
||
|
<article style="flex: 3;">
|
||
|
<h1>London</h1>
|
||
|
<p>London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
|
||
|
<p>Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.</p>
|
||
|
</article>
|
||
|
<nav id="services" style="flex: 1;">
|
||
|
<ul style="list-style-type: none; padding: 0 0 0 0;">
|
||
|
<li style="padding: 0 0 0 0; background-size: 40px; background-repeat: no-repeat; background-position: left center;"><a href="https://sso.cephii.com" style="text-align: center"><img class="services" src="https://repository-images.githubusercontent.com/230885748/19f01d00-8e26-11eb-9a14-cf0d28a1b68d"></img></a></li>
|
||
|
<li><a href="https://stream.cephii.com" style="text-align: center"><img class="services" src="https://sinajahangiri.com/wp-content/uploads/2020/04/51KORkIMXqL.png"></img></a></li>
|
||
|
<li><a style="text-align: center">Jellyseerr</a></li>
|
||
|
<li><a style="text-align: center">Nextcloud</a></li>
|
||
|
<li><a style="text-align: center">Gitea</a></li>
|
||
|
</ul>
|
||
|
</nav>
|
||
|
</section>
|
||
|
|
||
|
<footer>
|
||
|
<p>Footer</p>
|
||
|
</footer>
|
||
|
</section>
|
||
|
<div></div>
|
||
|
</section>
|
||
|
</body>
|