-
Notifications
You must be signed in to change notification settings - Fork 0
/
literary-works.html
115 lines (101 loc) · 4.14 KB
/
literary-works.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
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Mohamed Desoky</title>
<link href="styles.css" rel="stylesheet"/>
<script src="contact.js"></script>
<style>
section {
margin-top:20px;
display: flex; /* Turn section into a flex container */
flex: 1; /* Allow section to take remaining space */
text-align: left; /* Align text in the center */
border-bottom: white 2px solid; /* Add a white border at the bottom */
}
</style>
</head>
<body>
<header>
<h3>Desoky Capital</h3>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">GitHub Portfolio</a></li>
<li><a href="real-estate.html">Real Estate</a></li>
<li><a href="investment-products.html">Investment Products</a></li>
<li><a href="venture-capital.html">Venture Capital</a></li>
<li><a href="literary-works.html">Literary Works</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>
Current or completed authored books, in chronological order
</h2>
</section>
<table>
<tr class="trh">
<td colspan="2">
<h3>Beyond the Horizon, the Man My Father Was </h3>
</td>
</tr>
<tr class="bg">
<td>
<p>Discover the extraordinary life of an ordinary man whose journey spanned continents, bridged cultures, and touched countless lives.
Through sacrifice, resilience, and a quiet strength, this memoir honors a father's legacy as an immigrant, educator,
and family man, reflecting on his profound impact on the author and generations to come.</p>
</td>
<td>
<img alt="book-A" src=""/>
</td>
</tr>
<tr class="bg">
<td colspan="2">
<a href="" target="_blank">See the full description here</a>
</td>
</tr>
</table>
<table>
<tr class="trh">
<td colspan="2">
<h3>Common Sense Unsupervised Finance Models </h3>
</td>
</tr>
<tr class="bg">
<td>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent vel ligula scelerisque, vehicula dui eu, fermentum velit.</p>
</td>
<td>
<img alt="book-B" src=""/>
</td>
</tr>
</table>
<table>
<tr class="trh">
<td colspan="2">
<h3>Common Sense Supervised Finance Models </h3>
</td>
</tr>
<tr class="bg">
<td>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent vel ligula scelerisque, vehicula dui eu, fermentum velit.</p>
</td>
<td>
<img alt="book-C" src=""/>
</td>
</tr>
</table>
</main>
<footer>
<p>© 2024 Mohamed Desoky. All Rights Reserved.</p>
<p><a href="https://www.linkedin.com/in/mohameddesoky/" target="_blank">LinkedIn</a></p>
<p><a href="https://www.facebook.com/desokycapital/" target="_blank">Facebook</a></p>
</footer>
</body>
</html>