-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
81 lines (72 loc) · 3.46 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
<!doctype html>
<head>
<title>XYZ's Page</title> <!-- Your name (or psuedonym!) here. -->
<link rel="stylesheet" href="./static/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="./static/css/style.css" type="text/css">
</head>
<body class="home page" data-spy="scroll" data-target="#sidenav" screen_capture_injected="true">
<div class="container-fluid">
<div class="jumbotron">
<center><h1>XYZ's Page</h1></center> <!-- Your name (or psuedonym!) here. -->
<p>"The source will be with you. Always."</p> <!-- Or you can put your own quote! -->
<a type="button" class="btn btn-lg btn-primary" href="http://FOSSdirectory.github.io" id="actsignup">Visit my friends</a>
</div>
<div class="row">
<div class="col-md-6 padded">
<h3>I am...</h3>
<p>{This is where your bio goes! Here are some questions to help you out:
What is your favorite subject? What are your interests/hobbies?
Do you have any pets? What's your favorite pun?} </p> <!-- Customizable! -->
</div>
<div class="col-md-6 white padded">
<div class="row">
<div class="col-md-4"><img src="https://pbs.twimg.com/profile_images/378800000532546226/dbe5f0727b69487016ffd67a6689e75a.jpeg" class="img-responsive"></div>
<div class="col-md-4"><img src="http://archive.wired.com/images/article/full/2008/02/mir_500px.jpg" class="img-responsive"></div>
<div class="col-md-4"><img src="https://s3.amazonaws.com/ksr/assets/000/809/522/409cc794d506f5cbd85b4a28b59ee2eb_large.jpg?1375828143" class="img-responsive"></div>
</div>
</div>
</div>
<div class="row green padded">
<div class="col-md-3">
<div class="list-group">
<a href="#" class="list-group-item active">
<b>I know a lot about:</b> <!-- Customizable! -->
</a>
<a href="#" class="list-group-item">thing 1</a>
<a href="#" class="list-group-item">thing 2</a>
<a href="#" class="list-group-item">thing 3</a>
<a href="#" class="list-group-item">thing 4</a>
</div>
</div>
<div class="col-md-3">
<div class="list-group">
<a href="#" class="list-group-item active">
<b>I want to learn about:</b> <!-- Customizable! -->
</a>
<a href="#" class="list-group-item">thing 1</a>
<a href="#" class="list-group-item">thing 2</a>
<a href="#" class="list-group-item">thing 3</a>
<a href="#" class="list-group-item">thing 4</a>
</div>
</div>
<div class="col-md-6">
<a href="#" class="list-group-item active">
<b>My favorite places online:</b>
</a>
<a href="#" class="list-group-item">Here's a link to one of my favorite websites. Also, a description of what I like so much about it!</a>
<a href="#" class="list-group-item">Here's a link to one of my favorite websites. Also, a description of what I like so much about it!</a>
<a href="#" class="list-group-item">Here's a link to one of my favorite websites. Also, a description of what I like so much about it!</a>
</div>
</div>
<div class="bluestripe">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-8">
<h4 class="pull-right">A project of <a href="https://openhatch.org/"><img src="https://openhatch.org/w/images/thumb/a/a6/Openhatch-logo.png/500px-Openhatch-logo.png" width="100px"></a></h4>
</div>
</div>
</div>
</div>
</div>
</body>
</html>