-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (90 loc) · 4.07 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ogweno.Robo_Dojo</title>
<!-- Font awesome icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
<link rel="stylesheet" href="home.css">
</head>
<body>
<!-- header -->
<header>
<nav class = "navbar">
<div class = "container">
<a href = "https://ogweno-lab.github.io/Ogweno_Robo_Dojo/index.html" class = "navbar-brand">Ogweno.Robo_Dojo</a>
<div class = "navbar-nav" >
<a href = "https://ogweno-lab.github.io/Ogweno_Robo_Dojo/index.html">home</a>
<a href = "https://ogweno-lab.github.io/Ogweno_Robo_Dojo/index.html">blog</a>
<a href = "about_me.html">about</a>
</div>
</div>
</nav>
<div class = "banner">
<div class = "container">
<h1 class = "banner-title">
<span>Ogweno.</span>Robo_Dojo
</h1>
<p>Documentation of my activties in the JKUAT Robotics Training Programme</p>
</div>
</div>
</header>
<!-- end of header -->
<!-- blog -->
<section class = "blog" id = "blog">
<div class = "content">
<div class = "title">
<h2>Latest Blog</h2>
<p>Latest blogs about the Robo_Dojo</p>
</div>
<div class = "blog-content">
<!-- item -->
<div class = "blog-item">
<div class = "blog-img">
<img src = "images/DSC01573.JPG" alt = "">
<span><i class = "far fa-heart"></i></span>
</div>
<div class = "blog-text">
<span>8 May 2022</span>
<h2>Introductions</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Eligendi provident assumenda, quibusdam ipsam quis repellat perspiciatis, blanditiis, laborum iure beatae incidunt commodi qui nostrum rerum nulla officia quia eos. Minima!</p>
<a href = "about_me.html">Read More</a>
</div>
</div>
<!-- end of item -->
</div>
</div>
</section>
<!-- end of blog -->
<!-- about -->
<section class = "about" id = "about">
<div class = "container">
<div class = "about-content">
<div>
<img src = "images/ogweno_new.JPG" alt = "">
</div>
<div class = "about-text">
<div class = "title">
<h2>Ogweno Emmanuel</h2>
<p>A mechanical guy</p>
</div>
<p>Hello, I'm Ogweno Emmanuel and this is my personal website for documenting my activities in a robotics training programme. I am a second year student taking mechanical engineering with interests in Fluid Mechanics, Machine mechanics and a little bit of thermodynamics. Visist the site regularly for a weekly update.</p>
</div>
</div>
</div>
</section>
<!-- end of about -->
<!-- footer -->
<footer>
<div class = "social-links">
<a href = "https://www.linkedin.com/in/ogweno-emmanuel-3a64061a6/"><i class = "fab fa-linkedin"></i></a>
<a href = "https://twitter.com/Gor_Ogweno"><i class = "fab fa-twitter"></i></a>
<a href = "https://www.pinterest.com/ogwenoe/_saved/"><i class = "fab fa-pinterest"></i></a>
<a href = "https://grabcad.com/ogweno.emmanuel-2"><i class = "fab fa-GrabCad"></i></a>
</div>
<span>Ogweno.Robo_Dojo Blog page</span>
</footer>
<!-- end of footer -->
</body>
</html>