forked from BrittniKarat/StuddyBuddies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (76 loc) · 3.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/index.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<Section class="container">
<header>
<div class="left">
<h1>Lambda School Study Group</h1>
<h2>Cohort Web 49</h2>
</div>
<div class="right">
<nav>
<a href="#about">About</a>
<a href="#study">Study Materials</a>
<a href="#meet">Meet the Buddies!</a>
<a href="#contact">Reach out</a>
</nav>
</div>
</header>
<section class="top">
<div id="about">
<div class="">
<p> A community is born <br> On September 27th, 2021, The "Studdybuddies" channel was created to offer assistance peer to peer on the learning material presented. Since then, it has developed into a space that revels in its shared experiences, lends support, offers comedic relief, and created a memorable and rewarding school life for its members. </p>
</div>
</div>
</section>
<section id="study">
<h3>Here are some resources!</h3>
<div class="html">
<a href="https://www.codecademy.com/learn/learn-html" target=_blank>HTML Codecademy </a>
<a href="https://www.udemy.com/topic/html/" target=_blank>HTML Udemy</a>
<a href="https://lambdaschool.instructure.com/courses/1674/modules" target=_blank>Lambda HTML Modules</a>
</div>
<div class="css">
<a href="https://www.codecademy.com/learn/learn-css" target=_blank>CSS Codecademy</a>
<a href="https://www.udemy.com/courses/search/?src=ukw&q=css" target=_blank >CSS Udemy</a>
<a href="https://lambdaschool.instructure.com/courses/1674/modules" target=_blank>Lambda CSS Modules</a>
</div>
<div class="javascript">
<a href="https://www.codecademy.com/learn/introduction-to-javascript" target=_blank>JavaScript Codecademy</a>
<a href="https://www.udemy.com/courses/search/?src=ukw&q=javascript" target=_blank>JavaScript Udemy</a>
<a href="https://lambdaschool.instructure.com/courses/1676/modules" target=_blank>Lambda JavaScript Modules</a>
</div>
</section>
<section id="meet">
<div class="intro">
<h3>Meet the Buddies!</h3>
<div class="brittni buddies">
<h4> Brittni Karat </h4>
<!-- <img src="/img/pro.jpg" alt="Profile picture of Brittni"> -->
<p> Wife and mother of an amazing 1 year old, I started coding after my husband noticed my potential. I started on Codecademy Jul. 2021 and started Lambda School Sep. 2021. I am surprised at my level of passion for this subject which, only a short time ago, intimidated me!</p>
</div>
<div class="buddies">
</div>
</div>
</section>
<footer>
<nav>
<a href="#about">About</a>
<a href="#study">Study Materials</a>
<a href="#meet">Meet the Buddies!</a>
<a href="#contact">Reach out</a>
</nav>
<div id="contact">
<a href="https://app.slack.com/client/T4JUEB3ME/C02FBCRDT9R" class="slack" target= _blank > Join us on Slack </a>
</div>
</footer>
</Section>
</body>