-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (61 loc) · 3.12 KB
/
index.html
File metadata and controls
63 lines (61 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tanigh's Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Merriweather:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<header>
<!-- Navigation with Menu Button for mobile views -->
<button class="menu-button">Menu</button>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="ai-writing.html">AI Writing</a></li>
<li><a href="ai-visual.html">AI Visuals</a></li>
<li><a href="ai-saas.html">AI SaaS</a></li>
<li><a href="ai-video.html">AI Video</a></li>
<li><a href="ai-data.html">AI Data</a></li>
<li><a href="general-projects.html">General Projects</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- Hero Section -->
<section class="hero">
<h1>Welcome to My Portfolio</h1>
<p>Explore cutting-edge AI projects and creative solutions that define the next generation of technology applications.</p>
</section>
<!-- About Me Section -->
<section class="about">
<h2>About Me</h2>
<p>I am Tanigh Clark, a passionate technologist specializing in artificial intelligence and digital content creation. With a background in computer science and a keen interest in machine learning, I develop innovative solutions that enhance user interaction and automate processes. My portfolio showcases a range of projects from AI-driven applications to visual content creations, highlighting my skills in problem-solving and creative implementation.</p>
</section>
<!-- Featured Projects Section -->
<section class="projects">
<h2>Featured Projects</h2>
<div class="project-item">
<h3>AI Text Generator</h3>
<p>An advanced tool that leverages deep learning to generate text based on contextual understanding, aimed at assisting content creators in generating original content efficiently.</p>
<a href="#">Learn More</a>
</div>
<!-- Additional project items can be added here -->
<div class="project-item">
<h3>Visual Content Recognition</h3>
<p>This project involves creating a system capable of identifying and categorizing images and videos based on content, which can be applied in various fields such as digital media management and surveillance.</p>
<a href="#">Learn More</a>
</div>
</section>
</main>
<footer>
<p>Contact me at <a href="mailto:email@tanighclark.com">email@tanighclark.com</a></p>
</footer>
<script src="js/scripts.js"></script>
</body>
</html>