Swifting's my thing
I'm passionate about coding and creating applications with HTML and Swift. Here's a peek into my projects and skills!
HTML is the backbone of web design. Below is an example of a basic HTML structure I use.
<!DOCTYPE html> <html> <head> <title>My HTML Code</title> </head> <body> <h1>Hello World</h1> </body> </html>
Swift is powerful for app development. Here’s a Swift code snippet to print a greeting.
import SwiftUI struct ContentView: View { var body: some View { Text("Hello, World!") } }