-
Notifications
You must be signed in to change notification settings - Fork 2
/
news.html
114 lines (110 loc) · 5.23 KB
/
news.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
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>News | Computing Society</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="css/style.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<header>
<div class="wrapper">
<nav>
<a class='logo' href="index.html">
<img src="assets/img/logo.png" alt="logo" />
</a>
<a class="nav-link" href="#">News</a>
<a class="nav-link" href="#">Projects</a>
<a class="nav-link" href="#">Live Stream</a>
<a href="#">Forum</a>
<a class="flat-btn flat-btn-warning" href="#">
<span class="glyphicon glyphicon-pencil"></span>
SignUp
</a>
<a class="flat-btn flat-btn-default" href="#">
<span class="glyphicon glyphicon-user"></span>
LogIn
</a>
</nav>
</div>
</header>
<!-- Head Container -->
<div class="container-fluid head_cont text-center">
<div id="search">
<form action="" method="get">
<input type="text" name="search_text" id="search_text" placeholder="Looking for something?"/>
<button type="button" name="search_button" id="search_button">
<span class="glyphicon glyphicon-search"></span>
</button>
</form>
</div>
</div>
<!-- Content -->
<div class="container-fluid content">
<div class="row">
<div class="col-lg-10">
<h1 class="heading">News</h1>
<div class="card">
<div class="card-image">
<img src="assets/img/news1.jpg" alt="interest-group">
<div class="card-overlay"></div>
<span class="card-title">
Have an Interest?
</span>
</div>
<div class="card-content">
Find out if its with computing with our newly created interest groups.
</div>
<div class="card-action">
<a href="#"><span class="glyphicon glyphicon-book"></span> Read More</a>
</div>
</div>
<div class="card">
<div class="card-image">
<img src="assets/img/news2.jpg" alt="interest-group">
<div class="card-overlay"></div>
<span class="card-title">
Version Control, Git it?
</span>
</div>
<div class="card-content">
Im so excited!, hope you are too. We are having a learning session for those who want to learn Git.
It's a very valuable tool to learn as software companies these days are moving towards CI/CD. That will also be explained
so come on out.
</div>
<div class="card-action">
<a href="#"><span class="glyphicon glyphicon-book"></span> Read More</a>
</div>
</div>
<div class="card">
<div class="card-image">
<img src="assets/img/news3.png" alt="interest-group">
<div class="card-overlay"></div>
<span class="card-title">
Want to hack Google?
</span>
</div>
<div class="card-content">
Okay so we're not going to actually hack Google but this is the first step. Come on out this Thursday to hack with us.
You'll learn a whole lot of exciting ways to hack systems.
</div>
<div class="card-action">
<a href="#"><span class="glyphicon glyphicon-book"></span> Read More</a>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="row">
<div class="links col-lg-4">Home</div>
<div class="links col-lg-4">About</div>
<div class="col-lg-4">Contact Us</div>
</div>
<span class="copyright">Copyright © 2016</span>
</div>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
</body>
</html>