Day 12 - Club

Developer
Size
3,497 Kb
Views
18,216

How do I make an day 12 - club?

An I.T. club of KCC institution that has a goal of solving problems with the power of technology. What is a day 12 - club? How do you make a day 12 - club? This script and codes were developed by Christian on 15 October 2022, Saturday.

Day 12 - Club Previews

Day 12 - Club - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Day 12 - Club</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <nav class="mast-nav"> <a href="#" class="mast-nav__item">Home</a> <a href="#" class="mast-nav__item">About</a> <section class="mast-nav-brand"> <a href="#" class="mast-nav-brand__item">K@ccfit</a> </section>
</nav>
<header class="header"> <h1>K@ccfit</h1> <p>A club composed of BSIT students.</p> <p>Soon to be developers.</p>
</header>
<main class="wrapper"> <section> <article class="post"> <header class="post__header"> <h2>Greetings!</h2> </header> <p class="post__content"> Welcome to K@ccfit club one of the organizations in the Kabankalan Catholic College that is composed of BSIT students that focuses on solving problems inside the school premises with the help of technology and revolutionary ideas that will make an impact inside the school but also to the world. We are aspiring developers that builds software systems as a solution to a particular problem. </p> </article> <article class="post"> <header class="post__header"> <h2>Building software systems</h2> </header> <p class="post__content"> We are building program following a software system as a remedy to a particular problem that needs attention. Due to testing of our skills, We isolate ourselves(individual) to build a program that conquers a certain problem. </p> </article> </section> <aside class="sidebar"> <section class="card"> <section class="card__header"> <h2>	<i class="fa fa-code"></i>	Become a backer </h2> </section> <section class="card__content"> <p>Any kind of help is appreciated.</p> </section> </section> <section class="card"> <section class="card__header"> <h2>	<i class="fa fa-sign-in"></i>	Join us </h2> </section> <section class="card__content"> <p>Let's make a difference.</p> </section> </section> </aside>
</main>
<footer> <section class="site-map"> <h3>Site map</h3> <section class="site-map__links"> <a href="#"> Home </a> <a href="#">About</a> </section> </section> <section class="contact"> <h3>Contact</h3> <a href="#"> <i class="fa fa-facebook"></i> Facebook </a> <a href="#"> <i class="fa fa-twitter"></i> Twitter </a> <p> <i class="fa fa-phone"></i> 09074489921 </p> </section> <section class="clearfix"></section>
</footer>
</body>
</html>

Day 12 - Club - Script Codes CSS Codes

/* General viewport sizes */
:root { --light-secondary-color: #7DC4FF; --light-tertiary-color: #008BFF; --primary-color: #004985; --secondary-color: #006AC2; --tertiary-color: #2E89D5; --white: #ffffff;
}
/*
* Quick resets
*/
* { margin: 0; padding: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
}
html,
body { height: 100%; width: 100%;
}
body { background-color: #ddf; font-family: "Segoe UI", sans-serif;
}
h1 { font-size: 3rem;
}
h2 { font-size: 2.5rem;
}
h3 { font-size: 2rem;
}
h4 { font-size: 1.5rem;
}
h5 { font-size: 1.2rem;
}
h6 { font-size: 1rem;
}
/*
* Navigation styles
*/
.mast-nav { background-color: var(--primary-color); box-shadow: 0 2px 4px 2px var(--tertiary-color); position: fixed; padding: 2rem 1rem; width: 100%;
}
.mast-nav > .mast-nav__item:not(:first-child) { padding-left: 1rem;
}
.mast-nav a { color: var(--light-secondary-color); text-decoration: none;
}
/*
* Navigation brand styles
*/
.mast-nav-brand { display: inline-block; left: 50%; position: absolute; top: 80%;
}
.mast-nav-brand > .mast-nav-brand__item { background-color: var(--secondary-color); border-radius: 50%; box-shadow: 2px 1px 10px 2px rgba(0, 0, 0, 0.9); color: var(--white); padding: 2rem 1rem;
}
/*
* Header styles
*/
body > header { background: linear-gradient(45deg, rgba(0, 25, 2, 0.8), rgba(0, 150, 250, 0.98)), url("https://z-m-scontent.fmnl3-1.fna.fbcdn.net/v/t1.0-9/12108295_550471785106381_68661449873520742_n.jpg?_nc_eui2=v1%3AAeGqK5xo8gXYgwJ4P7ohZQH1qnxNzuAeMMshwgJtGG4_N6XJC_iDIAMghcB2UMVmdionCrL17D7-P2Ij9V9B2t84nrWvOgKJLumGEkioP_JgaIu6Ffm9k4CjKycoQrOmcjs&_nc_ad=z-m&oh=34419b71a0dfe838e028177f3db57344&oe=5999AD13") no-repeat center 80% fixed; -webkit-background-size: cover; background-size: cover; color: var(--white); padding: 22% 0; text-align: center;
}
header h1 { color: var(--white); font-size: 400%; font-weight: 300;
}
header p { font-size: 120%;
}
/*
* Main content styles
*/
.wrapper { margin: 0 auto; width: 90%;
}
@media (min-width: 768px) { main > section, main > aside { display: block; width: 100%; }
}
@media (min-width: 1200px) { main > section, main > aside { display: inline-block; } main > section { width: 70%; } main > aside { padding-top: 1rem; vertical-align: top; width: 25%; }
}
/* * Post styles */
.post { border: 1px solid var(--primary-color); margin: 1rem 0;
}
.post__header { background: linear-gradient(45deg, var(--primary-color) 70%, var(--secondary-color) 10%); color: var(--light-tertiary-color); padding: 1rem;
}
.post__content { padding: 1rem 2rem; text-align: justify;
}
/* * Card styles */
aside { padding: 1rem 0;
}
aside .card:not(:first-child) { margin-top: 1rem;
}
.card { border: 1px solid var(--secondary-color); text-align: center;
}
.card__header { background-color: var(--secondary-color); color: var(--light-secondary-color); padding: 1rem 0;
}
.card__header > h2 { font-size: 150%; text-align: center;
}
.card__content { padding: 1rem 0;
}
/* * Footer styles */
.site-map,
.contact { display: block; width: 100%;
}
@media (min-width: 768px) { .site-map, .contact { display: inline-block; float: left; width: 40%; }
}
.site-map__links { padding-left: 1rem;
}
footer { background-color: var(--primary-color); padding: 1rem 2rem;
}
footer h3,
footer a,
footer p { color: var(--white); text-decoration: none; display: block;
}
.clearfix { clear: both;
}
Day 12 - Club - Script Codes
Day 12 - Club - Script Codes
Home Page Home
Developer Christian
Username chpecson
Uploaded October 15, 2022
Rating 3
Size 3,497 Kb
Views 18,216
Do you need developer help for Day 12 - Club?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Christian (chpecson) Script Codes
Create amazing captions with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!