-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
120 lines (108 loc) · 4.26 KB
/
blog.html
File metadata and controls
120 lines (108 loc) · 4.26 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<meta name = "viewport" content="width=device-width, initial-scale = 1.0">
<title>personal website</title>
<link href="styles.css" rel="stylesheet" type="text/css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Zen+Antique&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
crossorigin="anonymous">
</head>
<body>
<section class =" sub-header">
<nav>
<a href = "index.html"><img src = "images/logo.png"></a>
<div class = "nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li> <a href = "index.html" ">HOME</a></li>
<li> <a href = "about.html">ABOUT</a></li>
<li> <a href = "units.html">UNITS</a></li>
<li> <a href = "blog.html">BLOG</a></li>
<li> <a href = "contact.html">CONTACT</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<h1>what other students say</h1>
</div>
</section>
<!-----------------bloggers content----------------->
<section class ="testinomials">
<h1> What my student says</h1>
<p>Below are suggestion by some of the students</p>
<div class = "row">
<div class="testinomials-col">
<img src = "images/20210706_104855 (1).jpg">
<div>
<p>Most mathematics students alwyas preffer applied maths to pure
related units. Recently I read a book which made me to change my mind
and re consider my decision over this.
</p>
<h3> Brayan Opiyo</h3>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
</div>
<div class="testinomials-col">
<img src = "images/WIN_20191128_13_41_48_Pro.jpg">
<div>
<p>Most mathematics students alwyas preffer applied maths to pure
related units. Recently I read a book which made me to change my mind
and re consider my decision over this.
</p>
<h3> Aoron bundi</h3>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-half-o"></i>
</div>
</div>
</div>
</section>
<section class ="testinomials">
<h1> Do You Want To Say Something?</h1>
<div class="comment-box">
<h3> Leave a comment</h3>
<form class="comment-form">
<input type="text" placeholder="Enter Name">
<input type="email" placeholder="Enter email">
<textarea rows="5" placeholder="Your Comment">
</textarea>
<button type="submit" class="hero-btn red-btn">POST COMMENT</button>
</form>
</div>
</section>
<!------------------footer------->
<section class = "footer">
<h4> about me</h4>
<p> Ia am Ben Obiero a lecturer at techical
university of kenya. <br>In TUK, I take part in pure mathematics
related units, where I also head the team of lectures.
</p>
<div class="icons">
<i class = "fa fa-facebook"></i>
<i class = "fa fa-twitter"></i>
<i class = "fa fa-instagram"></i>
<i class = "fa fa-linkedin"></i>
</div>
<p> Made with <i class = "fa fa-heart-o"></i> by brayan opiyo</p>
</section>
<!----------------javascript for toggle menu-->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0"
}
function hideMenu(){
navLinks.style.right = "-200px"
}
</script>
</body>
</html>