-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio_sarath.html
107 lines (95 loc) · 2.87 KB
/
portfolio_sarath.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User's Portfolio</title>
<style>
/* Inline CSS with user's design preferences */
body {
font-family: 'Arial', sans-serif;
background-color: #f7f7f7;
color: #333;
margin: 0;
padding: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.hero {
background-color: #3454D1;
color: #fff;
text-align: center;
padding: 100px 0;
}
.about {
padding: 50px 0;
}
.skills, .projects, .contact {
padding: 50px 0;
}
.contact {
background-color: #3454D1;
color: #fff;
text-align: center;
padding: 50px 0;
}
/* Responsive Design */
@media only screen and (max-width: 768px) {
.hero {
padding: 80px 0;
}
.about, .skills, .projects, .contact {
padding: 30px 0;
}
}
</style>
</head>
<body>
<div class="container">
<section class="hero">
<h1>User's Name</h1>
<p>Tagline: Where Cultural Diversity Meets Cutting-Edge Technology</p>
<a href="#" class="btn">Discover Our AI Solutions</a>
</section>
<section class="about">
<h2>About Me</h2>
<p>Welcome to the world of innovative AI solutions, where diversity meets cutting-edge technology! As an immigrant from India, I embarked on a journey to pursue my passion for artificial intelligence after completing my master's in computer science in the USA. Drawing from the rich tapestry of my cultural background, I founded an AI company that thrives on the fusion of Eastern and Western perspectives. At the heart of my entrepreneurial venture lies a commitment to pushing the boundaries of innovation in technology. From successful project leadership to a deep-seated passion for creativity, I have honed my skills to deliver AI solutions that not only meet the needs of today's tech industry but also anticipate the demands of tomorrow.</p>
</section>
<section class="skills">
<h2>Skills</h2>
<ul>
<li>Artificial Intelligence</li>
<li>Data Visualization</li>
<li>Neuroscience</li>
</ul>
</section>
<section class="projects">
<h2>Projects</h2>
<div class="project">
<h3>DataVisPro</h3>
<p>Description of the DataVisPro project showcasing expertise in data visualization and innovation.</p>
</div>
<div class="project">
<h3>NeuroGenius</h3>
<p>Description of the NeuroGenius project highlighting leadership in neuroscience and cutting-edge technology.</p>
</div>
</section>
<section class="contact">
<h2>Contact Me</h2>
<form>
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Your Email">
<textarea placeholder="Your Message"></textarea>
<button type="submit">Send</button>
</form>
<div class="social-links">
<a href="#">GitHub</a>
<a href="#">LinkedIn</a>
</div>
</section>
</div>
</body>
</html>