forked from Bijesse/scripted-student-portfolios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (53 loc) · 2.01 KB
/
index.html
File metadata and controls
61 lines (53 loc) · 2.01 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
<html lang="en">
<head>
<title>Scripted Student Portfolio Pages</title>
<!-- Look good on mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="css/default_style.css">
<!-- Our stylesheet -->
<link rel="stylesheet" href="css/student_style.css">
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="js/script.js" charset="utf-8"></script>
</head>
<body>
<div class="container">
<h1>SCHOOL_NAME Student Portfolios</h1>
<div class="row">
<div class="col-sm-4">
<a class="student-tile" id="einstein" href="http://einstein.biz/">
<span>Albert Einstein</span>
</a>
</div>
<div class="col-sm-4">
<a class="student-tile" id ="student1" href="">
<span>student1</span>
</a>
</div>
<div class="col-sm-4">
<a class="student-tile" id="student2" href="">
<span>Student2</span>
</a>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<a class="student-tile" id ="student3" href="">
<span>student3</span>
</a>
</div>
<div class="col-sm-4">
<a class="student-tile" id ="student4" href="">
<span>student4</span>
</a>
</div>
<div class="col-sm-4">
<a class="student-tile" id ="student5" href="">
<span>student5</span>
</a>
</div>
<!-- Copy lines 46-50, paste and edit below -->
</div>
</body>
</html>