-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (122 loc) · 4.59 KB
/
Copy pathindex.html
File metadata and controls
137 lines (122 loc) · 4.59 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Roboto font 100-900: Tüm ağırlıklar yüklendi -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Modern Normalize CSS: Modern tarayıcılar için normalize edildi -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/3.0.1/modern-normalize.min.css" />
<!-- Meyer Reset CSS: Tüm varsayılan stiller sıfırlandı -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<!-- CSS dosyası: styles.css dosyası css klasörü içine kondu -->
<link rel="stylesheet" href="css/styles.css">
<title>WebStudio</title>
</head>
<body>
<header>
<!-- Logo: Raleway font, uppercase, renk ayarlandı -->
<a href="#" class="logo">WebStudio</a>
<!-- Menü bağlantıları: font-size, hover durumu eklendi -->
<nav>
<ul>
<li><a href="#" class="nav-link">Studio</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contacts</a></li>
</ul>
</nav>
<!-- İletişim bilgileri: font-size, hover durumu eklendi -->
<address>
<ul>
<li><a href="mailto:info@devstudio.com">info@devstudio.com</a></li>
<li><a href="tel:+110001111111">+11 (000) 111-11-11</a></li>
</ul>
</address>
</header>
<main>
<!-- Hero section: class verildi, arka plan rengi, yükseklik, ortalama yapıldı -->
<section class="hero-section">
<div class="hero-content">
<h1 h1>Effective Solutions for Your Business</h1>
<button class="order-btn" type="button">Order Service</button>
</div>
</section>
<section>
<h2>Strategy</h2>
<p>Our goal is to identify the business problem to walk away with the perfect and creative solution.</p>
<h2>Punctuality</h2>
<p>Bring the key message to the brand's audience for the best price within the shortest possible time.</p>
<h2>Diligence</h2>
<p>Research and confirm brands with the strongest digital growth opportunities and minimize risk.</p>
<h2>Technologies</h2>
<p>Design practice focused on digital experiences. We bring forth a deep passion for problem-solving.</p>
</section>
<section>
<h2>Our Team</h2>
<ul>
<li>
<img src="images/team-1.jpg" width="264" alt="Mark Guerrero - Product Designer">
<h3>Mark Guerrero</h3>
<p>Product Designer</p>
</li>
<li>
<img src="images/team-2.jpg" width="264" alt="Tom Ford - Frontend Developer">
<h3>Tom Ford</h3>
<p>Frontend Developer</p>
</li>
<li>
<img src="images/team-3.jpg" width="264" alt="Camila Garcia - Marketing">
<h3>Camila Garcia</h3>
<p>Marketing</p>
</li>
<li>
<img src="images/team-4.jpg" width="264" alt="Daniel Wilson - UI Designer">
<h3>Daniel Wilson</h3>
<p>UI Designer</p>
</li>
</ul>
</section>
<!-- Our Portfolio: Ödev 2 kısmı, figma düzeniyle eşleşiyor -->
<section>
<h2>Our Portfolio</h2>
<ul>
<li>
<img src="images/portfolio-1.jpg" width="360" alt="Banking App - App">
<h3>Banking App</h3>
<p>App</p>
</li>
<li>
<img src="images/portfolio-2.jpg" width="360" alt="Cashless Payment - Marketing">
<h3>Cashless Payment</h3>
<p>Marketing</p>
</li>
<li>
<img src="images/portfolio-3.jpg" width="360" alt="Meditation App - App">
<h3>Meditation App</h3>
<p>App</p>
</li>
<li>
<img src="images/portfolio-4.jpg" width="360" alt="Taxi Service - Marketing">
<h3>Taxi Service</h3>
<p>Marketing</p>
</li>
<li>
<img src="images/portfolio-5.jpg" width="360" alt="Screen Illustrations - Design">
<h3>Screen Illustrations</h3>
<p>Design</p>
</li>
<li>
<img src="images/portfolio-6.jpg" width="360" alt="Online Courses - Marketing">
<h3>Online Courses</h3>
<p>Marketing</p>
</li>
</ul>
</section>
</main>
<!-- Footer: arka plan rengi, yazı rengi ve hizalama figma ile uyumlu -->
<footer class="footer">
<a href="#" class="logo">WebStudio</a>
<p>Increase the flow of customers and sales for your business with digital marketing & growth solutions.</p>
</footer>
</body>
</html>