-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.html
More file actions
92 lines (84 loc) · 4.7 KB
/
task.html
File metadata and controls
92 lines (84 loc) · 4.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./bootstrap-5.3.7-dist/bootstrap-5.3.7-dist/css/bootstrap.min.css" rel="stylesheet">
<title>Document</title>
</head>
<header class="container-fluid text-bg-dark p-3">
<div class="container d-flex flex-wrap justify-content-between align-content-center">
<div class=" row">
<h1 class=" h1 mt-3 mb-1 fw-bold"> Ahmed Emam</h1>
<small class=" fw-light mb-4 " style="color: rgba(255,255,255,0.75);">Full Stack .NET Dveleloper crafting fast, accessible web apps.I love Clean architecture,Solid UX,and turning complex ideas into simple products.</small>
</div>
</div>
</header>
<body class="" style="background-color: #f1f3f5;">
<div class="container mt-4">
<div class="row align-items-center">
<h3 class="h3 fw-semibold">Featured Projects</h3>
<small class=" fw-light mt-0 mb-3 text-muted"> A Few Recent Builds.Click through for details.</small>
</div>
<div class="card-group">
<div class=" col-md-3 card mx-2 p-0 bg-light rounded-2 border-0 border-light shadow">
<img src="https://picsum.photos/seed/p1/600/400" alt="Loading" class=" card-img-top rounded-top" >
<div class="card-body">
<h5 class=" card-title">Lifting Inspection Portal</h5>
<p class=" card-text text-muted " style="font-size: xs-small;" >Multi-tenant dashboard with reports, rolebased access,and offline-first inspection.</p>
<a class=" btn btn-outline-primary w-100"> View Project</a>
</div>
</div>
<div class=" col-md-3 card mx-2 p-0 bg-light rounded-2 border-0 border-light shadow">
<img src="https://picsum.photos/seed/p2/600/400" alt="Loading" class=" card-img-top rounded-top" >
<div class="card-body">
<h5 class=" card-title">Courses Academy</h5>
<p class=" card-text text-muted">.NET 9 + Onion Architecture app with Identity,Payments,and instructor tooling.</p>
<a class=" btn btn-outline-primary w-100"> View Project</a>
</div>
</div>
<div class=" col-md-3 card mx-2 p-0 bg-light rounded-1 border-0 border-light shadow">
<img src="https://picsum.photos/seed/p3/600/400" alt="Loading" class=" card-img-top rounded-top" >
<div class="card-body">
<h5 class=" card-title">Legal Matters Connector</h5>
<p class=" card-text text-muted">Sync engine Linking M365, NetDocuments,and CRM with audit Logs and retires.</p>
<a class=" btn btn-outline-primary w-100"> View Project</a>
</div>
</div>
<div class=" col-md-3 card mx-2 p-0 bg-light rounded-1 border-0 border-light shadow">
<img src="https://picsum.photos/seed/p4/600/400" alt="Loading" class=" card-img-top rounded-top" >
<div class="card-body">
<h5 class=" card-title">Contacts Intelligence</h5>
<p class=" card-text text-muted">Search + pagination over milions of records with server-side filtering.</p>
<a class=" btn btn-outline-primary w-100"> View Project</a>
</div>
</div>
</div>
<div class=" row g-4 mt-5">
<div class="col-md-8">
<div class=" card shadow border-0">
<div class=" card-body">
<h5 class=" card-title">About Me</h5>
<p class=" card-text text-muted">15+ years building enterprise apps with .NET,SQL Server ,and modern front-end stacks. I mentor,design architecture,and ship maintainable software.</p>
</div>
</div>
</div>
<div class=" col-md-4">
<div class=" card shadow border-0">
<div class=" card-body">
<h5 class=" card-title">Get in Touch</h5>
<p class=" card-text text-muted">Available for consulting, training, and architecture reviews.</p>
<a class=" btn btn-success w-100">Email Me</a>
</div>
</div>
</div>
</div>
</div>
</body>
<footer class="py-3 mt-5" style="background-color: #ffffff;">
<div class=" container d-flex justify-content-between">
<small class=" text-muted">@ 2025 Captin Dev</small>
<small class=" text-muted">Built With Bootstrap 5</small>
</div>
</footer>
</html>