Skip to content

Commit 6dd9c9f

Browse files
committed
added files
0 parents  commit 6dd9c9f

File tree

2 files changed

+116
-0
lines changed

2 files changed

+116
-0
lines changed

index.html

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8"> </meta>
5+
6+
7+
<link type="text/css" rel="stylesheet" href="stylesheet.css" />
8+
9+
10+
<title> Learn to Code LA | Links</title>
11+
<body>
12+
<div class="container">
13+
<div>
14+
</div>
15+
<header>
16+
17+
<h1> Learn to Code LA's Official Page</h1>
18+
<h2> Welcome!</h2>
19+
<img class = "photo" src="https://pbs.twimg.com/profile_images/570672401877188608/U--uaPzE.jpeg">
20+
21+
<ul>
22+
<li><a href="#">About</a></li>
23+
<li><a href="#">Projects</a></li>
24+
<li><a href="#">Members</a></li>
25+
<li><a href="#">Contact</a></li>
26+
</ul>
27+
</header>
28+
<div>
29+
<h3>Welcome to our meetUp Group</h3>
30+
<h4> We get together to practice our coding skills on Monday at 6:30 pm. Sessions usually last until 9:30 pm. We meet at Tom N Toms Cafe in Little Tokyo. Hope to see you there!<h4>
31+
<p>Press a language below to see what projects we have done in the past.</p>
32+
</div>
33+
<table>
34+
35+
<thead>
36+
</thead>
37+
<tbody>
38+
<tr>
39+
<td><a href="http://www.deviantart.com/browse/all/resources/stockart/?order=9&offset=72">
40+
<img src = "http://primetimegigs.com/wp-content/uploads/2014/06/HTML-and-CSS.gif"/></a></td>
41+
<td><a href = "http://www.deviantart.com/browse/all/resources/stockart/?order=9&offset=72">
42+
<img src = "http://www.webupdate24.com/wp-content/uploads/2014/02/js-logo-220x180.jpg"/></a></td>
43+
<td><a href = "http://www.deviantart.com/browse/all/resources/stockart/?order=9&offset=72">
44+
<img src = "http://www.techspot.com/images2/news/bigimage/2014-07-08-image-7.jpg"/></a></td>
45+
</tr>
46+
47+
<tr>
48+
<td>
49+
<a href = "http://www.deviantart.com/browse/all/resources/stockart/?order=9&offset=72">
50+
<img src = "http://tech.co/wp-content/uploads/2014/08/rubyrails.png"/>
51+
</a>
52+
</td>
53+
<td>
54+
<a href = "http://www.deviantart.com/browse/all/resources/stockart/?order=9&offset=72">
55+
<img src = "http://www.brandsoftheworld.com/sites/default/files/styles/logo-thumbnail/public/042014/c_0.png?itok=NGrw5nRV"></a></td>
56+
<td><a href = "http://www.deviantart.com/browse/all/resources/stockart/?order=9&offset=72">
57+
<img src = "https://assets-cdn.github.com/images/modules/logos_page/GitHub-Logo.png"/></a></td>
58+
</tr>
59+
</tbody>
60+
</table>
61+
62+
</body>
63+
</html>
64+
65+
66+

stylesheet.css

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
header {
2+
text-align: center;
3+
background: url('http://www.peugeot.com/images/FICHES_PRODUITS/1-Produits_Services/6-Peugeot_Design_Lab/Studio/Peugeot-Design-Lab-DL121-01.jpg');
4+
background-size: cover;
5+
color: lightgrey;
6+
margin: 0 auto;
7+
}
8+
.photo {
9+
width:200px;
10+
height:200px;
11+
}
12+
a {
13+
color: white;
14+
}
15+
h1 {
16+
font-size: 50px;
17+
position:center;
18+
color: white;
19+
20+
}
21+
img {
22+
margin: 40px 0px 0px 0px;
23+
border: 7px solid grey;
24+
border-radius: 20px;
25+
width:200px;
26+
height:150px;
27+
}
28+
29+
table, td {
30+
border: 3px grey solid;
31+
margin: 0 auto;
32+
position:center;
33+
}
34+
35+
body {
36+
background: url('http://s3.amazonaws.com/contemporaryartgroup/wp-content/uploads/2013/03/ICA-WhitePetals-06.jpg');
37+
}
38+
ul {
39+
padding: 10px;
40+
background: rgba(0,0,0,0.5);
41+
}
42+
li {
43+
display: inline;
44+
padding: 0px 10px 0px 10px;
45+
}
46+
h4 {
47+
font-family: times, serif;
48+
font-weight: normal;
49+
font-style: normal;
50+
}

0 commit comments

Comments
 (0)