-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (95 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="asset/css/main.css">
<title>Document</title>
</head>
<body>
<div class="heading_logo">
<img class="logo" src="/asset/img/Untitled.png" alt="">
</div>
<div class="about-section">
<h1>About</h1>
<p>
It can be intimidating for women to learn and ask questions when they are in an extreme minority. While open and welcoming, today's budding developer community is up to 91% male. If we can empower more females with the confidence in their technological capabilities we can begin to change this landscape.
</p>
</div>
<h1>Our Locations</h1>
<ul>USA
<li>
<a href="">New York</a>
</li>
<li>
<a href="">Columbus</a>
</li>
<li>
<a href="">Austin</a>
</li>
<li>
<a href="">Philly</a>
</li>
</ul>
<ul>WORLD
<li>
<a href="">Ottawa</a>
</li>
<li>
<a href="">Sydney</a>
</li>
</ul>
<div class="location-section">
</div>
<div class="upcoming-section">
<h1>Upcoming Classes</h1>
<table border="1px">
<tr>
<td>Location</td>
<td>Topic</td>
</tr>
<tr>
<td>New York</td>
<td>JavaScript & jQuery</td>
</tr>
<tr>
<td>San Francisco</td>
<td>HTML & CSS</td>
</tr>
</table>
</div>
<div class="signup-section">
<h1>Sign Up!</h1>
<div class="name">
<label for="Name">Name:</label>
<input type="text">
</div>
<div class="email">
<label for="Email">Email:</label>
<input type="text">
</div>
<div class="location">
<label for="location">Location:</label>
<select name="" id="location">
<option value=""> San Francisco</option>
</select>
</div>
<div class="gender">
<label for="Female">Female</label>
<input type="radio" name="gender">
<label for="Male">Male</label>
<input type="radio" name="gender">
</div>
<div class="experience">
<label for="experience">Experience:</label>
<textarea name="" id="experience" cols="30" rows="2"></textarea>
</div>
</div>
<footer>
<a href="">Twitter</a>
<a href="">Facebook</a>
<a href="">Flickr</a>
</footer>
</body>
</html>