-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule-three-activity-two.html
93 lines (93 loc) · 3.44 KB
/
module-three-activity-two.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>STEMbrite</title>
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="cleartype" content="on">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
</head>
<body>
<header>
<div class="row">
<div class="col-xs-12 col-sm-10 col-sm-offset-1 col-md-10 col-md-offset-1">
<div class="logo">
<img class="logo-horizontal" src="img/SB-logo-horizontal.png" alt="">
</div>
</div>
</div>
</header>
<div class="container activity-container">
<div class="row">
<div class="module-screen green-background col-xs-12 col-sm-10 col-sm-offset-1 col-md-10 col-md-offset-1">
<img class="module-three img-responsive center-block" src="img/module_3.jpg" alt="Module 3">
<h2>Module 3: <br><span>Talent Myth</span></h2>
<p>Activity 2 of 3</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3">
<p class="instruction">Indicate if a statement represents a Fixed or a Growth Mindset</p>
<p class="statement">1. "I am really good at Math and Science."</p>
<div class="row">
<div class="col-xs-3 col-xs-offset-2 col-sm-4 col-sm-offset-2 col-md-4">
<button class="btn btn-default">GROWTH</button>
</div>
<div class="col-xs-3 col-xs-offset-1 col-sm-4 col-md-4">
<button class="btn btn-default">FIXED</button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3">
<p class="statement">2. "When I put the time in, I can find a way to succeed."</p>
<div class="row">
<div class="col-xs-3 col-xs-offset-2 col-sm-4 col-sm-offset-2 col-md-4">
<button class="btn btn-default">GROWTH</button>
</div>
<div class="col-xs-3 col-xs-offset-1 col-sm-4 col-md-4">
<button class="btn btn-default">FIXED</button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3">
<p class="statement">3. "I can't do quadratic equations."</p>
<div class="row">
<div class="col-xs-3 col-xs-offset-2 col-sm-4 col-sm-offset-2 col-md-4">
<button class="btn btn-default">GROWTH</button>
</div>
<div class="col-xs-3 col-xs-offset-1 col-sm-4 col-md-4">
<button class="btn btn-default">FIXED</button>
</div>
</div>
</div>
</div>
<div class="row last-statement">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3">
<p class="statement">4. "I may have to retake this, but it's not going to stop me from doing what I want to do."</p>
<div class="row">
<div class="col-xs-3 col-xs-offset-2 col-sm-4 col-sm-offset-2 col-md-4">
<button class="btn btn-default">GROWTH</button>
</div>
<div class="col-xs-3 col-xs-offset-1 col-sm-4 col-md-4">
<button class="btn btn-default">FIXED</button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-10 col-sm-offset-1 col-md-10 col-md-offset-1">
<a href="module-three-activity-three.html"><button class="btn btn-lg submit">Submit</button></a>
</div>
</div>
</div>
</div>
</body>
</html>