-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
113 lines (106 loc) · 4.82 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CCSM | FAC15</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,800|Poppins:500,700" rel="stylesheet">
</head>
<body>
<header>
<nav>
<div>
<a class='navbar' tabindex="0" id='hamburger'>
<div id='hamburger' class='one'> </div>
<div id='hamburger' class='two'> </div>
<div id='hamburger' class='three'> </div>
</a>
</div>
<div id ="navMenu">
<a id="close"> x </a><br><br>
<a id="homeNav">Home</a><br><br>
<a id="aboutNav">About</a><br><br>
<a id= "teamNav">Meet the team</a><br><br>
<a id="contactNav">Contact</a><br><br>
<!-- <div class=""></div> -->
</div>
</nav>
<h1>CCSM</h1>
<div class="names">
<ol>
<li><span class="name-fancy">C</span>ynthia</li>
<li><span class="name-fancy">C</span>harlie</li>
<li><span class="name-fancy">S</span>usan</li>
<li><span class="name-fancy">M</span>ichele</li>
</ol>
</div>
<blockqoute><span class="color-q">"</span>We will solve your </br>problems </br><span class="color-q">and you </br>will pay </br>us.</span>"</blockqoute>
</header>
<section id="intro" class="block-intro">
<h2>Hi there, <span class="font-fancy">CCSM</span> are here...</h2>
<p>A team of developers, designers & strategists.</p>
<p>We have a wide variety of skills, check out our profiles to find out more.</p>
<p><a href="">Scroll to see more</a></p>
</section>
<section id="people">
<div class="block block--black">
<div class="person-container float-right"><!--o-->
<img class="block__img" src="img/cynthia.png" alt="Cynthia" height="210" width="210">
<div class="block__text">
<h3>Cynthia </br>Onwordi</h3>
<p class="title">Web Developer</p>
<p class="para">A sporty creative into all things that keep the mind ticking! I've studied and worked in Web & Design... but also enjoy dabbling in arts & crafts with a hint of fashion.</p>
<a href="">View Profile</a>
</div>
</div>
<div class="clear"></div> <!--o-->
<div class="person-container float-left">
<img class="block__img" src="img/charlie.png" alt="Charlie" height="210" width="210">
<div class="block__text">
<h3>Charlie </br>La Fosse</h3>
<p class="title">Web Developer</p>
<p class="para">A web development student from the South of England. Interested in musical oddities, books and dogs!</p>
<a href="">View Profile</a>
</div>
</div>
</div>
<div class="block block--grey">
<div class="person-container float-right"><!--o-->
<img class="block__img" src="img/sx.png" alt="Susan" height="210" width="210">
<div class="block__text">
<h3>Susan </br>Gooding</h3>
<p class="title">Web Developer</p>
<p class="para">I initially worked as a Graphic Designer and Photographer. After learning coding I'm now working in Web Development.</p>
<a href="">View Profile</a>
</div>
</div>
<div class="clear"></div> <!--o-->
<div class="person-container float-left">
<img class="block__img" src="img/mic.png" alt="Michele Bio" height="210" width="210">
<div class="block__text">
<h3>Michele </br>Boi</h3>
<p class="title">Web Developer</p>
<p class="para">You want a job done well? Look no further! Our web solutions will bewitch your eyes.</p>
<a href="">View Profile</a>
</div>
</div>
</div>
</section>
<div class="clear"></div>
<section id="contact">
<form action="/" method="post">
<h3>Get in touch!</h3>
<div class="form_input"><label for="first-name">First Name </label><input id="first-name" type="text" placeholder="First name" /></div>
<div class="form_input"><label for="last-name">Last Name </label><input id="last-name" type="text" placeholder="Last name"/></div>
<div class="form_input"><label for="email">Email address </label><input id="email" type="text" placeholder="Email" /></div>
<div class="form_input"><label for="message">Message </label> <textarea id="message" placeholder="Type your message here" rows="8" cols="45"></textarea> <br>
<button type="button">Submit </button>
</form>
</section>
<footer>
<p>Copyright © 2018 CCSM All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>