Static website for free workshop

Size
3,412 Kb
Views
20,240

How do I make an static website for free workshop?

This is a static website we developed on free workshop for soon-to-be-developers. We started with basic CSS and HTML. You can find more about workshop on github https://github.com/tonkec/workshop or join our group on facebook https://www.facebook.com/groups/1628299214049197/. What is a static website for free workshop? How do you make a static website for free workshop? This script and codes were developed by Antonija Simic on 28 September 2022, Wednesday.

Static website for free workshop Previews

Static website for free workshop - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Static website for free workshop</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <nav class="nav">	<ul class="nav-list">	<li class="nav-list-item"><a href="" class="nav-list-anchor">Home</a></li>	<li class="nav-list-item"><a href="" class="nav-list-anchor">Team</a></li>	<li class="nav-list-item"><a href="" class="nav-list-anchor">Product</a></li>	<li class="nav-list-item"><a href="" class="nav-list-anchor">Contact</a></li>	</ul>	</nav>	<main>	<header>	<div class="main-con">	<div class="header-con left">	<h1 class="welcome-heading">Welcome to our <br /> awesome website!</h1>	</div>	<div class="header-con right">	<img src="http://i61.tinypic.com/2iqxu29.png" alt="" class="header-image">	</div>	</div>	</header>	<section class="team">	<div class="main-con">	<h2 class="team-heading">Meet our team</h2>	<div class="column left team-con">	<img src="http://i58.tinypic.com/16bg22r.jpg" alt="" class="team-img">	<h3 class="team-small-heading">John Doe</h3>	<h5 class="team-subtext"> CEO </h5>	</div>	<div class="column left team-con">	<img src="http://i60.tinypic.com/2s6aicj.jpg" alt="" class="team-img">	<h3 class="team-small-heading">John Doe</h3>	<h5 class="team-subtext"> CTO </h5>	</div>	<div class="column left team-con">	<img src="http://i62.tinypic.com/2r7snds.jpg" alt="" class="team-img">	<h3 class="team-small-heading">John Doe</h3>	<h5 class="team-subtext"> Designer </h5>	</div>	</div>	</section>	<section class="product">	<h2 class="team-heading">Our product</h2>	<div class="main-con">	<div class="column left product-con mobile">	<h3 class="product-paragraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Assumenda qui vero sapiente esse laudantium error iure architecto laborum consectetur! Odit.</h3>	</div>	<div class="column left product-con">	<img src="http://i57.tinypic.com/288cpao.jpg" alt="" class="product-img">	</div>	<div class="column left product-con mobile">	<h3 class="product-paragraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Libero sapiente aut nemo ab commodi in qui reiciendis nostrum voluptatibus! Ad.</h3>	</div>	</div>	</section>	<footer>	<h2 class="footer-heading">Contact Us</h2>	<div class="main-con">	<form action="" class="footer-form"> <input type="text" name="fname" class="input-field" placeholder="name"> <input type="text" name="lname" class="input-field" placeholder="email"> <input type="text" name="lname" class="input-field" placeholder="something else"> <input type="text" name="lname" class="input-field" placeholder="something else"> <input type="submit" value="Submit" class="btn-submit">	</form>	</div>	</footer>	</main>
</body>
</html>

Static website for free workshop - Script Codes CSS Codes

@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic);
html, body {	height: 100%;	padding: 0;	margin: 0;	font-family: 'Source Sans Pro';
}
.nav {	background: #fff;	height: 80px;	width: 100%;	position: fixed;	z-index: 9999;
}
.nav-list {	list-style: none;	height: 100%;	margin: 0 auto;	margin-right: 60px;	float: right;
}
.nav-list-item {	display: inline-block;	margin-left: 30px;	margin-top: 25px;
}
.nav-list-anchor {	text-decoration: none;	color: #000;	font-size: 1.2em;	font-weight: 300;
}
main {	height: 100%;
}
section, footer {	overflow: hidden;	display: flex;	align-items: center;	position: relative;	justify-content: center;
}
.product .main-con {	display: flex;	align-items: center;	justify-content: center;
}
.right {	float: right;
}
.left {	float: left;
}
header {	height: 100%;	background-color: #3498DB;	padding: 50px;	display: flex;	align-items: center;	justify-content: center;
}
.header-con {	width: 50%;	text-align: center;
}
.header-image {	margin: 0 auto;	display: block;	width: 100%;	position: relative;
}
.welcome-heading {	color: #fff;	line-height: 1.6em;	font-weight: 300;	margin-bottom: 20px;
}
.team {	height: auto;	background-color: #E74C3C;
}
.team-con {	margin-top: 100px;
}
.column {	height: 100%;	width: 100%;	text-align: center;
}
.team-img {	width: 50%;	margin: 0 auto;
}
.team-heading {	color: #fff;	text-align: center;	font-size: 2.5em;	margin: 20px auto 0;	font-weight: 300;	position: absolute;	top: 20px;	left: 0;	right: 0;
}
.team-small-heading {	color: #fff;	font-size: 2em;	text-align: center;	margin: 20px auto 0;	font-weight: 300;
}
.team-subtext {	font-size: 1em;	color: #fff;	margin: 20px auto 0;	font-weight: 300;
}
.product {	height: 100%;	background-color: #049372;
}
.product-paragraph {	color: #FFF;	line-height: 1.6em;	font-weight: 300;	text-align: left;
}
.product-img {	width: 50%;	border-radius: 10%;	height: auto;	margin-top: 50px;
}
footer {	height: 100%;	background-color: #22313F;	overflow: hidden;	position: relative;
}
footer .main-con {	width: 100%;
}
.footer-heading {	color: #fff;	text-align: center;	font-size: 3.5em;	font-weight: 300;	margin-top: 50px;	position: absolute;	left: 0;	right: 0;	top: 50px;
}
.footer-form {	margin: 0 auto;	width: 50%;	margin-top: 70px;
}
.input-field {	display: block;	width: 100%;	margin: 20px 0 auto;	background: transparent;	border: none;	border-bottom: 1px solid rgba(255, 255, 255, 0.6);	height: 40px;	font-size: 1.5em;	font-weight: 300;	color: #fff;
}
.input-field:focus {	outline: none;	color: #95A5A6;
}
.btn-submit {	width: 30%;	margin: 0 auto;	display: block;	float: right;	background-color: #0D141B;	border: none;	margin-top: 20px;	height: auto;	padding: 15px 0;	color: #fff;	font-size: 1.5em;	cursor: pointer;	-webkit-border-radius: 30px; border-radius: 30px;
}
.btn-submit:hover {	color: #fff;
}
@media (max-width: 768px) {	.nav-list {	float: none;	text-align: center;	margin: 0 auto;	}	.header-con {	width: 100%;	}	.welcome-heading {	font-size: 2.5em;	line-height: 1.4;	}	.product {	height: auto;	}	.product-con {	margin-top: 40px;	}	.product-img {	width: 50%;	margin-top: 0;	margin-bottom: 50px;	}	.product-paragraph {	font-size: 1.5em;	text-align: justify;	line-height: 1.4;	}	.input-field {	font-size: 1em;	}	.product {	display: block;	}	.product .main-con {	display: block;	}	.team-heading {	position: static;	}	.product-con.mobile {	float: none;	width: 50%;	margin: 50px auto;	text-align: center;	}	.btn-submit {	width: 60%;	}	.footer-form {	width: 80%;	}
}
@media (min-width: 768px) {	.team {	height: 100%;	}	.column {	width: 33.33333%;	}	.welcome-heading {	font-size: 3em;	}	.product-paragraph {	font-size: 1.7em;	margin: 0 30px;	}	.btn-submit {	width: 50%;	}
}
@media (min-width: 992px) {	.product-paragraph {	font-size: ;	}
}
Static website for free workshop - Script Codes
Static website for free workshop - Script Codes
Home Page Home
Developer Antonija Simic
Username tonkec
Uploaded September 28, 2022
Rating 3
Size 3,412 Kb
Views 20,240
Do you need developer help for Static website for free workshop?

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!

Antonija Simic (tonkec) Script Codes
Create amazing love letters 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!