-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (91 loc) · 2.96 KB
/
index.html
File metadata and controls
97 lines (91 loc) · 2.96 KB
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
<!--// Color Palette: https://coolors.co/392f5a-56876d-e4c1f9-8ee3ef-aef3e7-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Tech Talks 👩💻</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
</head>
<body>
<div class="navrectangle">
<header>
<div class="wrapper">
<div class="logo"> <a href="#">👩💻 TechTalks</a>
</div>
<nav>
<a class="active" href="index.html">Home</a>
<div class="dropdown">
<a class="dropbtn">Learn</a>
<div class="dropdown-content">
<a href="compsci.html">Computer Science</a>
<a href="appliedmaths.html">Mathematics</a>
<a href="./biomed.html">Biology & Medicine</a>
</div>
</div>
<a href="aboutus.html">About Us</a>
<a href="userfeedback.html">Survey</a>
</nav>
</div>
</header>
</div>
<div class="tech-talk-header">
<div class="header-one">
<div class="border">
<br>
<h1> Welcome <br> to <br> TechTalks! </h1>
</div>
</div>
</div>
<div class="mission">
<h2> <span class="statement-bubble"> Our Mission: </span> </h2>
<br>
<br>
<br>
<h4 class="mission-description-text"> To narrow the pre-existing gender gap in STEM industries by offering educational resources and inspirational role models. We strive to empower the next generation of young women in STEM. </h4>
</div>
<br>
<br>
<!--
<h1 class = "randomized"> Get uplifted with a quote from a woman in STEM !</h1>
<button class="random-quote"> <em> <strong> g e n e r a t e ! </strong> </em></button>
<h3 class="spaceone"></h3>
<br>
<br>
<br>
<br>
<div> -->
<div class = "quote-body">
<br>
<br>
<br>
<h1 class="quote-heading"> Click for some inspiration from a woman in STEM! </h1>
<button onClick = "newQuote()" class = "quoteB"> New Quote </button>
<br>
<br>
<br>
<br>
<div id = "quoteDisplay"; class = "quote-text">
</div>
</div>
<p class="connect">CONNECT WITH US!</p>
<div class="oneline">
<a href = "https://www.instagram.com/shecanstem/?hl=en">
<img src = "./pictures/insta.png" class="iconstwo">
</a>
<a href = "https://www.youtube.com/user/STEMWomen">
<img src = "./pictures/yt.png" class="iconsthree">
</a>
<img src = "./pictures/gmail.png" class="icons">
</div>
<div class="handle">
<p style="display:inline;"> <strong>Instagram: </strong> <em>@techtalks</em> / <strong>Youtube Channel:</strong> <em>Tech Talks</em> / <strong>Mail:</strong> <em>techtalks@gmail.com</em></p>
<div>
</div>
<br>
<br>
<br>
<script src="script.js"></script>
</body>
</html>